What types of threads are supported by MFC framework?
Answers were Sorted based on User's Feedback
Answer / yasar
MFC supports Two types of threads 1. Worker thread and 2.
user interface thread.
Worker Thread : Does not need user intervention while
running. example background printing etc...
User interface thread : Needs user interface while running
like needs input from user to process further etc....
AfxBeginThread() is used to Create both worker and User
interface thread. to differentiate worker and user-
interface thread AfxBeginThread has minor changes.
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / kaivalya
Worker Thread: Run back ground tasks like writing into file
or reading from file , calculations.
User interface thread: Will create windows & process message
| Is This Answer Correct ? | 1 Yes | 3 No |
what is the difference between compiling and building?
How you create a button dynamically?
List out the parameters of WinMain Function.
How to setup a timer?
is there any class which is not derived from Cobject
What is the base class for MFC
what is the use of Mutex and critical section
Have you ever used win32 APIs ?
What is model and modeless dialog box ? Give some examples?
Tell me about different kinds of synchranization objects ?
Does the application have more than one object? If no, then what is the reason?
What is a message map?