Click here to Skip to main content
15,887,135 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Unregister same registering with 'regsvr32.exe' ? Pin
ThatsAlok18-Jul-06 0:42
ThatsAlok18-Jul-06 0:42 
GeneralRe: Unregister same registering with 'regsvr32.exe' ? Pin
Andy Rama18-Jul-06 20:27
Andy Rama18-Jul-06 20:27 
GeneralRe: Unregister same registering with 'regsvr32.exe' ? Pin
ThatsAlok18-Jul-06 22:23
ThatsAlok18-Jul-06 22:23 
GeneralRe: Unregister same registering with 'regsvr32.exe' ? Pin
Andy Rama19-Jul-06 4:26
Andy Rama19-Jul-06 4:26 
GeneralRe: Unregister same registering with 'regsvr32.exe' ? Pin
ThatsAlok19-Jul-06 4:48
ThatsAlok19-Jul-06 4:48 
GeneralRe: Unregister same registering with 'regsvr32.exe' ? Pin
Andy Rama19-Jul-06 20:26
Andy Rama19-Jul-06 20:26 
Questionhow to make a commandLine to wait Pin
kanna_p17-Jul-06 20:24
kanna_p17-Jul-06 20:24 
AnswerRe: how to make a commandLine to wait [modified] Pin
bob1697217-Jul-06 20:33
bob1697217-Jul-06 20:33 
Are you spawning another exe? There are multiple version of the spawn and exec commands that include a variation that waits for the spawned exe to finish. Is that what your looking for or are you asking to keep the command window from a command line window open after some processing to view results?

If the latter, then put something like a getchar() in there to make it wait for a keypress...

int main(int argc, char* argv[])
{
// Processing here?

printf("Press a key to continue\n");
getchar();
return 0;
}

-- modified at 2:33 Tuesday 18th July, 2006
AnswerRe: how to make a commandLine to wait Pin
NiceNaidu17-Jul-06 20:33
NiceNaidu17-Jul-06 20:33 
QuestionERROR??? Pin
mimimimilaw17-Jul-06 20:21
mimimimilaw17-Jul-06 20:21 
AnswerRe: ERROR??? Pin
Hamid_RT17-Jul-06 20:27
Hamid_RT17-Jul-06 20:27 
GeneralRe: ERROR??? Pin
mimimimilaw17-Jul-06 20:38
mimimimilaw17-Jul-06 20:38 
GeneralRe: ERROR??? Pin
Hamid_RT17-Jul-06 20:52
Hamid_RT17-Jul-06 20:52 
GeneralRe: ERROR??? [modified] Pin
mimimimilaw17-Jul-06 21:00
mimimimilaw17-Jul-06 21:00 
GeneralRe: ERROR??? Pin
Hamid_RT17-Jul-06 21:50
Hamid_RT17-Jul-06 21:50 
AnswerRe: ERROR??? Pin
NiceNaidu17-Jul-06 20:27
NiceNaidu17-Jul-06 20:27 
GeneralRe: ERROR??? Pin
NiceNaidu17-Jul-06 20:47
NiceNaidu17-Jul-06 20:47 
GeneralRe: ERROR??? [modified] Pin
mimimimilaw17-Jul-06 21:08
mimimimilaw17-Jul-06 21:08 
QuestionVC++ Documentation (in advance) Pin
MozhdehQeraati17-Jul-06 20:20
MozhdehQeraati17-Jul-06 20:20 
AnswerRe: VC++ Documentation (in advance) Pin
Ștefan-Mihai MOGA18-Jul-06 0:46
professionalȘtefan-Mihai MOGA18-Jul-06 0:46 
GeneralRe: VC++ Documentation (in advance) Pin
MozhdehQeraati18-Jul-06 18:58
MozhdehQeraati18-Jul-06 18:58 
GeneralRe: VC++ Documentation (in advance) Pin
Ștefan-Mihai MOGA18-Jul-06 20:06
professionalȘtefan-Mihai MOGA18-Jul-06 20:06 
QuestionVisual C++ 6.0 Pin
we3Guy17-Jul-06 20:09
we3Guy17-Jul-06 20:09 
QuestionRe: Visual C++ 6.0 Pin
Hamid_RT17-Jul-06 20:24
Hamid_RT17-Jul-06 20:24 
AnswerRe: Visual C++ 6.0 Pin
bob1697217-Jul-06 20:25
bob1697217-Jul-06 20:25 

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.