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 |
Explain the flow of SDI application?
1) create ToolTip in MFC?
1)How to create ToolTip in MFC?
1)dynamic creation of a Button ?
If there is more than 100 control in a window how we can change the Taborder of a controls
What is thread & process?
Tell us something about MFC?
What is the difference between hinsrtance and hprevinstance in WinMain function?
What is LPCTSTR? What does LP denote it?
How to setup a timer?
I have 2 threads. One thread prints odd numbers and the second thread prints even numbers. Now, I have to execute the threads alternatively so that i can output 1,2,3,4,5,6,..... write code for this?
What is CALLBACK? How it work? what is the advantage of CALLBACK, please explain with an example