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 do you change the properties for a tree view control that is part of the CTreeView class?
what is the use of AFX_MANAGE_STATE ?
How to create a Modeless Dialog?
is there any class which is not derived from Cobject
1)To Remove WS_MINIMIZEBOX in a Frame ?
1)At run-time, you can change the icon by calling the LoadIcon() function?
How we can findout Memoryleaks, In what way it can be avoided
Do you have an idea about MFC?
Hi All, I have created one MFC Dialog Based application.now if i am running the application its working fine,instead of closing he application i minimized the application,if i run the application again,i am getting the Dialog. I want to prevent the calling of application multiple times. please give me the code and let me know in which method i need to make changes. Praveer
1) create ToolTip in MFC?
what if we provide two message handler for same message ?
1)does Frame Thickness in MFC?