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 |
is there any class which is not derived from Cobject
how can u change button shape at run time
Hi can anyone explain about the synchronization objects types and where we are using in the code.
How you create a button dynamically?
What is CSingleDocTemplate?
Have you ever used win32 APIs ?
What is LPCTSTR? What does LP denote it?
What is the difference between OnInitialUpdate and OnUpdate?
what is the size of a process
If application hangs while SendMessage is waiting for the result, how you handle it?
What are the differences between MFC Exception macros and C++ exception keywords?
how does conditionally close the Dialog Box ?