Click here to Skip to main content
15,896,912 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Problem with GetFocus() Pin
Jader8916-Jan-07 10:59
Jader8916-Jan-07 10:59 
Questionlaunch 2 exes with one..... Pin
homerjaylol16-Jan-07 7:31
homerjaylol16-Jan-07 7:31 
QuestionRe: launch 2 exes with one..... Pin
David Crow16-Jan-07 7:34
David Crow16-Jan-07 7:34 
AnswerRe: launch 2 exes with one..... Pin
toxcct16-Jan-07 8:03
toxcct16-Jan-07 8:03 
GeneralRe: launch 2 exes with one..... Pin
David Crow16-Jan-07 8:06
David Crow16-Jan-07 8:06 
GeneralRe: launch 2 exes with one..... Pin
toxcct16-Jan-07 8:10
toxcct16-Jan-07 8:10 
AnswerRe: launch 2 exes with one..... Pin
James R. Twine16-Jan-07 8:03
James R. Twine16-Jan-07 8:03 
GeneralRe: launch 2 exes with one..... Pin
#realJSOP16-Jan-07 8:36
professional#realJSOP16-Jan-07 8:36 
If you use CreateProcess to start the other apps, you can do this froim the OnClose override in CMainFrame...

// using SendMessage will cause the sending app to wait until the other app 
// responds to the message, thus signaling the calling app that it's okay 
// to shut close the handles.
SendMessage(m_hWndTelemetry, WM_CLOSE, 0, 0);
CloseHandle(processInfo.hProcess);
CloseHandle(processInfo.hThread);




"Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
-----
"...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001


GeneralRe: launch 2 exes with one..... Pin
James R. Twine16-Jan-07 8:45
James R. Twine16-Jan-07 8:45 
QuestionThunks Pin
Waldermort16-Jan-07 7:16
Waldermort16-Jan-07 7:16 
AnswerRe: Thunks Pin
James R. Twine16-Jan-07 7:28
James R. Twine16-Jan-07 7:28 
QuestionCan I raise Exception in one thread and handle it in another? Pin
chilituna16-Jan-07 6:51
chilituna16-Jan-07 6:51 
AnswerRe: Can I raise Exception in one thread and handle it in another? Pin
James R. Twine16-Jan-07 7:03
James R. Twine16-Jan-07 7:03 
QuestionRe: Can I raise Exception in one thread and handle it in another? Pin
David Crow16-Jan-07 7:33
David Crow16-Jan-07 7:33 
AnswerRe: Can I raise Exception in one thread and handle it in another? Pin
Michael Dunn16-Jan-07 8:28
sitebuilderMichael Dunn16-Jan-07 8:28 
QuestionIOCP+weird latency problem Pin
Polity4h16-Jan-07 6:32
Polity4h16-Jan-07 6:32 
AnswerRe: IOCP+weird latency problem [modified] Pin
Mark Salsbery16-Jan-07 7:13
Mark Salsbery16-Jan-07 7:13 
QuestionCode Snippets availability for C++ in VS2005. Pin
oleg6316-Jan-07 5:45
professionaloleg6316-Jan-07 5:45 
AnswerRe: Code Snippets availability for C++ in VS2005. Pin
Christian Graus16-Jan-07 8:38
protectorChristian Graus16-Jan-07 8:38 
GeneralRe: Code Snippets availability for C++ in VS2005. Pin
James R. Twine16-Jan-07 9:05
James R. Twine16-Jan-07 9:05 
GeneralRe: Code Snippets availability for C++ in VS2005. Pin
S Douglas16-Jan-07 23:01
professionalS Douglas16-Jan-07 23:01 
AnswerRe: Code Snippets availability for C++ in VS2005. Pin
S Douglas16-Jan-07 23:00
professionalS Douglas16-Jan-07 23:00 
QuestionVideo Overlay in MFC Pin
BoroDave16-Jan-07 4:30
BoroDave16-Jan-07 4:30 
AnswerRe: Video Overlay in MFC Pin
Mark Salsbery16-Jan-07 7:28
Mark Salsbery16-Jan-07 7:28 
QuestionSelect static control when overlapped Pin
Vishvanathan16-Jan-07 3:18
Vishvanathan16-Jan-07 3:18 

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.