Click here to Skip to main content
15,889,216 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Help,about destroy a CWnd Pin
Mark Salsbery21-May-07 5:32
Mark Salsbery21-May-07 5:32 
GeneralRe: Help,about destroy a CWnd Pin
kcynic21-May-07 12:45
kcynic21-May-07 12:45 
GeneralRe: Help,about destroy a CWnd Pin
Mark Salsbery21-May-07 12:55
Mark Salsbery21-May-07 12:55 
GeneralRe: Help,about destroy a CWnd Pin
kcynic21-May-07 19:34
kcynic21-May-07 19:34 
QuestionNetwork Management Pin
dharani20-May-07 21:27
dharani20-May-07 21:27 
AnswerRe: Network Management Pin
Hamid_RT20-May-07 22:10
Hamid_RT20-May-07 22:10 
QuestionCreateProcess problem. Pin
david bagaturia20-May-07 21:00
david bagaturia20-May-07 21:00 
AnswerRe: CreateProcess problem. Pin
dharani20-May-07 21:15
dharani20-May-07 21:15 
Did you initialize lpProcessInformation ?
See the example below
STARTUPINFO si;
PROCESS_INFORMATION pi;

ZeroMemory( &si, sizeof(si) );
si.cb = sizeof(si);
ZeroMemory( &pi, sizeof(pi) );

si.lpReserved = NULL;
si.lpReserved2 = NULL;
si.cbReserved2 = 0;
si.lpDesktop = NULL;
si.dwFlags = 0;

if(!CreateProcess(NULL,
"Yourpathhere",
NULL,
NULL,
FALSE,
0,
NULL,
NULL,
&si,
&pi))
{
...failed
}

redindian

GeneralRe: CreateProcess problem. Pin
david bagaturia20-May-07 21:20
david bagaturia20-May-07 21:20 
GeneralRe: CreateProcess problem. Pin
dharani20-May-07 21:28
dharani20-May-07 21:28 
GeneralRe: CreateProcess problem. Pin
david bagaturia20-May-07 21:33
david bagaturia20-May-07 21:33 
AnswerRe: CreateProcess problem. Pin
Stephen Hewitt20-May-07 21:51
Stephen Hewitt20-May-07 21:51 
GeneralRe: CreateProcess problem. Pin
david bagaturia20-May-07 22:46
david bagaturia20-May-07 22:46 
QuestionMotion Detection in VC++ Pin
tyagineha20-May-07 20:02
tyagineha20-May-07 20:02 
AnswerRe: Motion Detection in VC++ Pin
bankai12320-May-07 21:59
bankai12320-May-07 21:59 
GeneralRe: Motion Detection in VC++ Pin
tyagineha20-May-07 22:35
tyagineha20-May-07 22:35 
AnswerRe: Motion Detection in VC++ Pin
Hamid_RT22-May-07 19:23
Hamid_RT22-May-07 19:23 
QuestionDisable sounds Pin
rrrado20-May-07 19:53
rrrado20-May-07 19:53 
AnswerRe: Disable sounds Pin
Hamid_RT20-May-07 20:09
Hamid_RT20-May-07 20:09 
GeneralRe: Disable sounds Pin
rrrado20-May-07 20:12
rrrado20-May-07 20:12 
GeneralRe: Disable sounds Pin
David Crow21-May-07 3:36
David Crow21-May-07 3:36 
AnswerRe: Disable sounds Pin
zhang80060520-May-07 20:59
zhang80060520-May-07 20:59 
GeneralRe: Disable sounds Pin
rrrado20-May-07 21:26
rrrado20-May-07 21:26 
GeneralRe: Disable sounds Pin
zhang80060521-May-07 0:10
zhang80060521-May-07 0:10 
GeneralRe: Disable sounds Pin
rrrado21-May-07 22:21
rrrado21-May-07 22:21 

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.