Click here to Skip to main content
15,901,505 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: run at shutdown ... Pin
toxcct6-May-04 6:46
toxcct6-May-04 6:46 
GeneralAdding multilanguage support Pin
Raphael Kindt5-May-04 4:59
Raphael Kindt5-May-04 4:59 
GeneralRe: Adding multilanguage support Pin
Alexander M.,5-May-04 5:01
Alexander M.,5-May-04 5:01 
GeneralDrawing anti alias Lines and Curves Pin
Crercio O. Silva5-May-04 4:42
Crercio O. Silva5-May-04 4:42 
GeneralRe: Drawing anti alias Lines and Curves Pin
Alexander M.,5-May-04 4:47
Alexander M.,5-May-04 4:47 
GeneralRe: Drawing anti alias Lines and Curves Pin
RChin5-May-04 5:37
RChin5-May-04 5:37 
GeneralPostMessage Pin
ykutanoor5-May-04 4:32
ykutanoor5-May-04 4:32 
GeneralRe: PostMessage Pin
Shay Harel5-May-04 4:42
Shay Harel5-May-04 4:42 
put that in the first dialog
const unsigned int wm_uiImportDone=RegisterWindowMessage("Import_Done");

give wm_uiImportDone as a pointer to the class

on the class, mae sure to add that to the message map
ON_REGISTERED_MESSAGE(wm_uiImportDone, OnImportDone)

then on the dialog, use:
::PostMessage (m_hWnd, wm_uiImportDone, 0, 0);
when m_hwnd is a pointer to the class that has to be derived from a window to get a message

GeneralUpdating Dialog from a thread Pin
Shay Harel5-May-04 4:23
Shay Harel5-May-04 4:23 
GeneralRe: Updating Dialog from a thread Pin
jmkhael5-May-04 4:43
jmkhael5-May-04 4:43 
GeneralRe: Updating Dialog from a thread Pin
2249175-May-04 4:44
2249175-May-04 4:44 
GeneralRe: Updating Dialog from a thread Pin
RChin5-May-04 4:55
RChin5-May-04 4:55 
GeneralIcon Collection Pin
Rafael Fernández López5-May-04 4:10
Rafael Fernández López5-May-04 4:10 
GeneralRe: Icon Collection Pin
Anonymous5-May-04 4:27
Anonymous5-May-04 4:27 
GeneralRe: Icon Collection Pin
grigsoft5-May-04 5:37
grigsoft5-May-04 5:37 
GeneralRe: Icon Collection Pin
David Crow5-May-04 5:41
David Crow5-May-04 5:41 
QuestionHow many times DLL loaded for different Application? Pin
hasansheik5-May-04 3:07
hasansheik5-May-04 3:07 
AnswerRe: How many times DLL loaded for different Application? Pin
John M. Drescher5-May-04 3:18
John M. Drescher5-May-04 3:18 
GeneralRe: How many times DLL loaded for different Application? Pin
hasansheik5-May-04 3:26
hasansheik5-May-04 3:26 
GeneralDDE problem with afxmessagebox Pin
Deepak Samuel5-May-04 2:30
Deepak Samuel5-May-04 2:30 
GeneralRe: DDE problem with afxmessagebox Pin
jmkhael5-May-04 2:46
jmkhael5-May-04 2:46 
GeneralRe: DDE problem with afxmessagebox Pin
Deepak Samuel5-May-04 2:52
Deepak Samuel5-May-04 2:52 
GeneralCCriticalSection question Pin
oferbgu5-May-04 1:42
oferbgu5-May-04 1:42 
GeneralRe: CCriticalSection question Pin
jmkhael5-May-04 2:43
jmkhael5-May-04 2:43 
GeneralRe: CCriticalSection question Pin
Alexander M.,5-May-04 4:45
Alexander M.,5-May-04 4:45 

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.