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 workrer thread and UI thread
In VC++ How to transfer between one exe to another exe while running..
is there any class which is not derived from Cobject
In SDI how many view's are attached to document object and in MDI how many view's are attached to Document object?
What is the use of CCmdTarget ?
What?s the difference between Modal and Modeless Dialog?
What does mfc stand for?
List out the parameters of WinMain Function.
What is the base class for most MFC classes?
1) How do you Destroy a Dialog Box ?
What is userdefine Messages in MFC?
How to convert a CString variable to char* or LPTSTR?