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

C / C++ / MFC

 
GeneralTIP: When your program suddenly stops loading Pin
Jason Hooper21-Jun-02 5:16
Jason Hooper21-Jun-02 5:16 
GeneralRe: TIP: When your program suddenly stops loading Pin
Neville Franks21-Jun-02 11:37
Neville Franks21-Jun-02 11:37 
GeneralRe: TIP: When your program suddenly stops loading Pin
Jason Hooper22-Jun-02 1:33
Jason Hooper22-Jun-02 1:33 
QuestionHow can I tell if an app has shut down? Pin
Paresh Solanki21-Jun-02 5:14
Paresh Solanki21-Jun-02 5:14 
AnswerRe: How can I tell if an app has shut down? Pin
Jeremy Falcon21-Jun-02 5:26
professionalJeremy Falcon21-Jun-02 5:26 
GeneralRe: How can I tell if an app has shut down? Pin
Paresh Solanki21-Jun-02 6:01
Paresh Solanki21-Jun-02 6:01 
GeneralRe: How can I tell if an app has shut down? Pin
Carlos Antollini21-Jun-02 6:12
Carlos Antollini21-Jun-02 6:12 
AnswerRe: How can I tell if an app has shut down? Pin
Martin Ziacek21-Jun-02 5:30
Martin Ziacek21-Jun-02 5:30 
Use CreateProcess() to start P1. You will get new process handle in the last parameter PROCESS_INFORMATION structure - hProcess. Then you can use this handle to wait for completion of that proces as a parameter for WaitForSingleObject() function. After call to WaitForSingleObject() will finish, you can get exit code of proces with GetExitCodeProcess(), if you will need it. Then you can start it again.

AnswerRe: How can I tell if an app has shut down? Pin
Jason Henderson21-Jun-02 9:48
Jason Henderson21-Jun-02 9:48 
Generalusing bits for program control Pin
21-Jun-02 4:59
suss21-Jun-02 4:59 
GeneralRe: using bits for program control Pin
Martin Ziacek21-Jun-02 5:50
Martin Ziacek21-Jun-02 5:50 
GeneralRe: using bits for program control Pin
Jason Henderson21-Jun-02 9:53
Jason Henderson21-Jun-02 9:53 
GeneralRe: using bits for program control Pin
PJ Arends21-Jun-02 18:48
professionalPJ Arends21-Jun-02 18:48 
Generalproblem with Cristi Posea's Control Bar usage Pin
21-Jun-02 4:57
suss21-Jun-02 4:57 
GeneralWindows XP locks on waveOutReset() and waveInReset() Pin
JohnnyNin21-Jun-02 4:45
JohnnyNin21-Jun-02 4:45 
GeneralRecommendations Pin
Al_Pennyworth21-Jun-02 4:27
Al_Pennyworth21-Jun-02 4:27 
GeneralRe: Recommendations Pin
Bill Wilson21-Jun-02 9:20
Bill Wilson21-Jun-02 9:20 
QuestionHow do i find out if a graphics device supports the GetPixel API? Pin
redeemer21-Jun-02 4:12
redeemer21-Jun-02 4:12 
AnswerRe: How do i find out if a graphics device supports the GetPixel API? Pin
Chris Losinger21-Jun-02 4:59
professionalChris Losinger21-Jun-02 4:59 
GeneralOdd list box behaviour Pin
Jason Hooper21-Jun-02 4:05
Jason Hooper21-Jun-02 4:05 
GeneralRe: Odd list box behaviour Pin
Roger Allen21-Jun-02 6:32
Roger Allen21-Jun-02 6:32 
GeneralRe: Odd list box behaviour Pin
Jason Hooper21-Jun-02 11:35
Jason Hooper21-Jun-02 11:35 
GeneralRe: Odd list box behaviour Pin
Shog921-Jun-02 12:41
sitebuilderShog921-Jun-02 12:41 
GeneralRe: Odd list box behaviour Pin
Jason Hooper22-Jun-02 6:46
Jason Hooper22-Jun-02 6:46 
GeneralRe: Odd list box behaviour Pin
Roger Allen24-Jun-02 2:26
Roger Allen24-Jun-02 2:26 

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.