Click here to Skip to main content
15,920,633 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Open Folder Browse Dialog Pin
Steve Driessens19-Apr-01 12:43
Steve Driessens19-Apr-01 12:43 
GeneralWhat Include File Pin
Ghasrfakhri20-Apr-01 2:43
Ghasrfakhri20-Apr-01 2:43 
GeneralRe: What Include File Pin
Steve Driessens20-Apr-01 3:27
Steve Driessens20-Apr-01 3:27 
GeneralAdd shlobj.h But... Pin
Ghasrfakhri20-Apr-01 3:40
Ghasrfakhri20-Apr-01 3:40 
GeneralI Use It But Pin
Ghasrfakhri20-Apr-01 5:03
Ghasrfakhri20-Apr-01 5:03 
GeneralRe: I Use It But Pin
Steve Driessens20-Apr-01 11:08
Steve Driessens20-Apr-01 11:08 
GeneralCreateProcess Function Pin
Ghasrfakhri19-Apr-01 12:31
Ghasrfakhri19-Apr-01 12:31 
GeneralRe: CreateProcess Function Pin
yamini19-Apr-01 21:32
yamini19-Apr-01 21:32 
Hi,
I used the function CreateProcess in many applications.I can even start an ATL Service!
The code goes like this .

STARTUPINFO suinfo;
memset(&suinfo,0,sizeof(suinfo));
PROCESS_INFORMATION procinfo;
BOOL result;
for(int i=0;i<10;i++)
{
result=CreateProcess("<path of="" yr="" exe="">","",0,0,FALSE,NORMAL_PRIORITY_CLASS,0,0,&suinfo,&procinfo);
if(result)
{
cout<<"Client process created\n";
}
else
{
cout<<"Failed to create the client process\n";
exit(0);
}
}


This will work !

Y.Yamini Devi
GeneralI NEED ALGORITHM ABOUT SORTING 1 ... 9 Pin
Hadi Rezaee19-Apr-01 10:34
Hadi Rezaee19-Apr-01 10:34 
GeneralRe: I NEED ALGORITHM ABOUT SORTING 1 ... 9 Pin
Hadi Rezaee19-Apr-01 12:32
Hadi Rezaee19-Apr-01 12:32 
GeneralRe: I NEED ALGORITHM ABOUT SORTING 1 ... 9 Pin
Christian Graus19-Apr-01 14:15
protectorChristian Graus19-Apr-01 14:15 
GeneralRe: I NEED ALGORITHM ABOUT SORTING 1 ... 9 Pin
Hadi Rezaee19-Apr-01 12:32
Hadi Rezaee19-Apr-01 12:32 
GeneralCComboBox Pin
orcun colak19-Apr-01 9:51
orcun colak19-Apr-01 9:51 
GeneralRe: CComboBox Pin
Drake Elsari19-Apr-01 12:00
Drake Elsari19-Apr-01 12:00 
GeneralRe: CComboBox Pin
Michael Dunn19-Apr-01 18:28
sitebuilderMichael Dunn19-Apr-01 18:28 
GeneralCToolBar and Controls Pin
Drake Elsari19-Apr-01 9:02
Drake Elsari19-Apr-01 9:02 
GeneralRe: CToolBar and Controls Pin
l a u r e n20-Apr-01 0:41
l a u r e n20-Apr-01 0:41 
GeneralRe: CToolBar and Controls Pin
Drake Elsari20-Apr-01 2:13
Drake Elsari20-Apr-01 2:13 
GeneralRe: CToolBar and Controls Pin
l a u r e n20-Apr-01 3:46
l a u r e n20-Apr-01 3:46 
GeneralRe: CToolBar and Controls Pin
Drake Elsari20-Apr-01 10:15
Drake Elsari20-Apr-01 10:15 
QuestionHow does program updating work? Pin
Michael Anderson19-Apr-01 7:12
Michael Anderson19-Apr-01 7:12 
GeneralPlease Help me...How to find if a file is read only or not Pin
Gnanakkumaran D19-Apr-01 5:49
Gnanakkumaran D19-Apr-01 5:49 
GeneralRe: Please Help me...How to find if a file is read only or not Pin
Hadi Rezaee19-Apr-01 10:36
Hadi Rezaee19-Apr-01 10:36 
GeneralRe: Please Help me...How to find if a file is read only or not Pin
Gnanakkumaran D19-Apr-01 10:42
Gnanakkumaran D19-Apr-01 10:42 
GeneralSHFileOperation Pin
19-Apr-01 5:45
suss19-Apr-01 5: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.