Click here to Skip to main content
15,908,445 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: EXE's ICON Pin
Brian Delahunty19-Jun-03 7:22
Brian Delahunty19-Jun-03 7:22 
GeneralOnNewDocument Pin
doctorpi19-Jun-03 5:52
doctorpi19-Jun-03 5:52 
GeneralRe: OnNewDocument Pin
John M. Drescher19-Jun-03 6:01
John M. Drescher19-Jun-03 6:01 
GeneralRe: OnNewDocument Pin
doctorpi19-Jun-03 6:26
doctorpi19-Jun-03 6:26 
GeneralMFC with message map versus old method Pin
Member 14615719-Jun-03 4:35
Member 14615719-Jun-03 4:35 
GeneralRe: MFC with message map versus old method Pin
AlexO19-Jun-03 4:40
AlexO19-Jun-03 4:40 
GeneralRe: MFC with message map versus old method Pin
John M. Drescher19-Jun-03 5:09
John M. Drescher19-Jun-03 5:09 
GeneralRe: MFC with message map versus old method Pin
Cambalindo19-Jun-03 5:49
Cambalindo19-Jun-03 5:49 
You can make your own message pump wherever you want with this code:
if(::PeekMessage(&msg,m_hWnd,0,0,PM_REMOVE))<br />
{<br />
::TranslateMessage(&msg);<br />
::DispatchMessage(&msg);<br />
}


to check for an event or message inside your function and the come back to your process.

Daniel Cespedes
"Santa Cruz de la Sierra Paraiso Terrenal!"
daniel.cespedes@ieee.org
GeneralRe: MFC with message map versus old method Pin
Member 14615719-Jun-03 5:55
Member 14615719-Jun-03 5:55 
GeneralRe: MFC with message map versus old method Pin
Cambalindo19-Jun-03 6:08
Cambalindo19-Jun-03 6:08 
GeneralRe: MFC with message map versus old method Pin
basementman19-Jun-03 8:06
basementman19-Jun-03 8:06 
GeneralRe: MFC with message map versus old method Pin
Cambalindo19-Jun-03 9:54
Cambalindo19-Jun-03 9:54 
GeneralRe: MFC with message map versus old method Pin
John M. Drescher20-Jun-03 5:28
John M. Drescher20-Jun-03 5:28 
GeneralRe: MFC with message map versus old method Pin
Cambalindo20-Jun-03 7:17
Cambalindo20-Jun-03 7:17 
GeneralRe: MFC with message map versus old method Pin
Cambalindo20-Jun-03 7:19
Cambalindo20-Jun-03 7:19 
GeneralRe: MFC with message map versus old method Pin
John M. Drescher20-Jun-03 7:26
John M. Drescher20-Jun-03 7:26 
GeneralRe: MFC with message map versus old method Pin
John M. Drescher20-Jun-03 5:20
John M. Drescher20-Jun-03 5:20 
Generalhelp in C++ Pin
Mark J Jackson19-Jun-03 4:29
Mark J Jackson19-Jun-03 4:29 
GeneralRe: help in C++ Pin
AlexO19-Jun-03 4:38
AlexO19-Jun-03 4:38 
GeneralRe: help in C++ Pin
David Crow19-Jun-03 10:19
David Crow19-Jun-03 10:19 
GeneralThread Pin
Gandilf19-Jun-03 4:09
Gandilf19-Jun-03 4:09 
GeneralRe: Thread Pin
AlexO19-Jun-03 4:18
AlexO19-Jun-03 4:18 
GeneralRe: Thread Pin
AlexO19-Jun-03 4:22
AlexO19-Jun-03 4:22 
GeneralRe: Thread Pin
Gandilf19-Jun-03 4:48
Gandilf19-Jun-03 4:48 
GeneralRe: Thread Pin
AlexO19-Jun-03 5:35
AlexO19-Jun-03 5:35 

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.