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 |
How can i change the color of a dropdowncombobox elements
What is the command routing in MFC framework?
Why Array Index starts from Zero
What is LoadLibrary function returns?
How we can findout Memoryleaks, In what way it can be avoided
I can i set size of integer variable should be fixed for different operating systems(Ex i want integer size is 2bytes in OS)
What function is used to disable a control at runtime?
What is serialization ?which function is responsible for serializing data ?
What is thread & process?
Tell us something about MFC?
if no message handler is available for a message then will deal with the message ? does window proving any default mechanism?
In VC++ How to transfer between one exe to another exe while running..