Click here to Skip to main content
16,005,552 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: linking two projects Pin
User 5838526-Aug-07 18:34
User 5838526-Aug-07 18:34 
GeneralRe: linking two projects Pin
valli_guru6-Aug-07 18:50
valli_guru6-Aug-07 18:50 
GeneralRe: linking two projects Pin
User 5838526-Aug-07 18:57
User 5838526-Aug-07 18:57 
GeneralRe: linking two projects Pin
valli_guru6-Aug-07 19:23
valli_guru6-Aug-07 19:23 
GeneralRe: linking two projects Pin
User 5838526-Aug-07 19:26
User 5838526-Aug-07 19:26 
GeneralRe: linking two projects Pin
valli_guru6-Aug-07 19:40
valli_guru6-Aug-07 19:40 
QuestionGeneral Question Regarding real-time control Pin
alberthyc6-Aug-07 17:24
alberthyc6-Aug-07 17:24 
AnswerRe: General Question Regarding real-time control Pin
Russell'7-Aug-07 2:08
Russell'7-Aug-07 2:08 
alberthyc wrote:
If I put the Getdata() in the main dialog thread,...


I think that is the right way.Big Grin | :-D
To communicate between the thread and the main dialog you can send some messages:
You can send the messages using PostMessage((WM_USER+10??), Param)
You can catch they override PreTranslateMessage or DefWindowProc, and:
DefWindowProc(UINT message, WPARAM wParam, LPARAM lParam)
	if(message==(WM_USER+10??)){
		... do something
		return TRUE;
	}





Russell

QuestionRe: General Question Regarding real-time control Pin
David Crow7-Aug-07 3:03
David Crow7-Aug-07 3:03 
QuestionQuestion regarding DirectX Pin
godspeed1236-Aug-07 15:23
godspeed1236-Aug-07 15:23 
AnswerRe: Question regarding DirectX Pin
Mark Salsbery6-Aug-07 15:40
Mark Salsbery6-Aug-07 15:40 
GeneralRe: Question regarding DirectX Pin
godspeed1237-Aug-07 4:49
godspeed1237-Aug-07 4:49 
GeneralRe: Question regarding DirectX Pin
Mark Salsbery7-Aug-07 5:04
Mark Salsbery7-Aug-07 5:04 
QuestionSetting CComboBox Height Pin
WayneK1006-Aug-07 12:41
WayneK1006-Aug-07 12:41 
AnswerRe: Setting CComboBox Height Pin
Mark Salsbery6-Aug-07 13:35
Mark Salsbery6-Aug-07 13:35 
GeneralRe: Setting CComboBox Height Pin
WayneK1006-Aug-07 14:06
WayneK1006-Aug-07 14:06 
GeneralRe: Setting CComboBox Height Pin
Mark Salsbery6-Aug-07 14:14
Mark Salsbery6-Aug-07 14:14 
AnswerRe: Setting CComboBox Height Pin
Anurag Gandhi6-Aug-07 20:18
professionalAnurag Gandhi6-Aug-07 20:18 
QuestionExtracting binary resources -- PNG and Bitmap Pin
Torus_XL6-Aug-07 9:37
Torus_XL6-Aug-07 9:37 
AnswerRe: Extracting binary resources -- PNG and Bitmap Pin
Mark Salsbery6-Aug-07 9:52
Mark Salsbery6-Aug-07 9:52 
GeneralRe: Extracting binary resources -- PNG and Bitmap Pin
Torus_XL6-Aug-07 10:10
Torus_XL6-Aug-07 10:10 
GeneralRe: Extracting binary resources -- PNG and Bitmap Pin
Mark Salsbery6-Aug-07 13:28
Mark Salsbery6-Aug-07 13:28 
GeneralRe: Extracting binary resources -- PNG and Bitmap Pin
Torus_XL7-Aug-07 8:10
Torus_XL7-Aug-07 8:10 
AnswerRe: Extracting binary resources -- PNG and Bitmap Pin
Torus_XL6-Aug-07 11:04
Torus_XL6-Aug-07 11:04 
QuestionWin32: Writing a new line of text? [modified] Pin
deostroll6-Aug-07 9:33
deostroll6-Aug-07 9:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.