how does the UIThread and worker thread communicates and
handle events
Answers were Sorted based on User's Feedback
Answer / vikram
UI thread and Worker thread can communicate with each other using SendMessage() or PostMessage().SendMessage() returns when the message is used by the Thread. PostMessage Returns immediately. These two method require Window handle of the UI Thread.
One can also use PostThreadMessage(thread id, message).here UI thread id is required.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vishnu
Worker threads are used to process in back and can not
modify any user interface directly.
Ex: Used to calculate some complicated calculations.
UI threads can change user interface directly
Ex: Used to change UI display images in windows MFC
application
| Is This Answer Correct ? | 1 Yes | 3 No |
What is serialization ?which function is responsible for serializing data ?
Does the application have more than one object? If Yes, Briefly explain.
What is the initial function to be called in MFC and what it will do
What are the types of button controls?
What is document-view architecture ? Give me one real time example for SDI ?
List out the parameters of WinMain Function.
Given two processes, how can they share memory?
What is the difference between Struts and JSF? Pls list some most suitable differences.
What is thread & process?
If there is more than 100 control in a window how we can change the Taborder of a controls
What interface must be supported by an ActiveX control?
what is the use of CCmdTarget?