What is the initial function to be called in MFC and what
it will do
Answers were Sorted based on User's Feedback
Answer / iridium
The question was for MFC and its InitInstance.
| Is This Answer Correct ? | 25 Yes | 2 No |
Answer / pallavi
Intial function called in MFC is AfxWinMain which is
WinMain equivalent. AfxWinMain then calls AfxWinInit which
initialises tha application and copies AfxWinMain
fub=nction parameters to the mamber variables of the
application object.then it calls InitApplication(only for
16 bit)/InitInstance(32 bit) .If all the above goes well
then Run function is called which starts the message loop.
| Is This Answer Correct ? | 16 Yes | 2 No |
The WinMain function is called by the system as the initial
entry point for a Windows-based application. It initializes
the application, display its main window, and enter a
message retrieval-and-dispatch loop that is the top-level
control structure for the remainder of the application's
execution.
| Is This Answer Correct ? | 14 Yes | 7 No |
Answer / abhijit
wWinMainCRTStartup ... this is the first function that is called when the MFC application is UNICODE built and has GUI.
WinMainCRTStartup .. UNICODE MFC GUI Application
wMainCRTStartup .... UNICODE MFC Console Application
MainCRTStartup .... MFC Console Application
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / zerozero
InitApplication and InitInstance functions gets called
first by WinMain
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / pavan
It is CWinApp derived class constructor. Any MFC
application starts by calling global CWinApp object's class
constructor. It is global object that is created before
local variables and therefore constructor is called first.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / man
EveryWindow application starts to execute WinMain() function
that is entry point.
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / uttam kumar
The heart of an MFC application is an object based on the
CWinApp class.InitInstance() of CWinApp class is called
early in the application's lifetime right after the
application starts running but before the window is
created.Unless InitInstance() creates a window,application
does not have a window.
| Is This Answer Correct ? | 2 Yes | 2 No |
Does the application have more than one object? If Yes, Briefly explain.
What are the differences between MFC Exception macros and C++ exception keywords?
What four types of properties are supported by an ActiveX control?
Difference between Cclint DC & Cpaint Dc
What is the initial function to be called in MFC and what it will do
2.create for 10 batch: Employee_Number Employee_name Employee_Dateofjoining Employee_address Employee_salary 1.select the employee name who deriving more than 10 thousand salary and joined before august 08. use structure and pointers
1)dynamic creation of a Button ?
1)How to change a text of a button in runtime?
Will there be any difference in the image buffer size if it is loaded in from CString to LPTSTR using GetBuffer()? lptstr = string.GetBuffer(0);
What is the use of message map ?
what is message loop how mfc does it internally?
What types of threads are supported by MFC framework?