how does the UIThread and worker thread communicates and
handle events

Answers were Sorted based on User's Feedback



how does the UIThread and worker thread communicates and handle events..

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

how does the UIThread and worker thread communicates and handle events..

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

Post New Answer

More MFC Interview Questions

Which MFC function is used to display output?

9 Answers   TCS,


Given two processes, how can they share memory?

2 Answers   Microsoft,


List out the basic features of MFC.

4 Answers   Mphasis,


What is Multithreading

1 Answers   Invensys,


Explain the flow of SDI application?

8 Answers   Mphasis,






How many types of dialog box are their

10 Answers   Honeywell,


Why not virtual functions to handle messages?

5 Answers  


In VC++ How to transfer between one exe to another exe while running..

5 Answers   Wipro,


visual Pogramming c++ coding for create a paint application.. (Please someone help me)

2 Answers  


What?s the difference between Modal and Modeless Dialog?

12 Answers   Jekson, Usl India,


What is document-view architecture ? Give me one real time example for SDI ?

2 Answers  


How do I create a dialog box in mfc?

0 Answers  


Categories