 |
C++Talk.NET C++ language newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Dave Guest
|
Posted: Sun Jun 29, 2003 9:08 pm Post subject: Send DOS Commands from VC++ |
|
|
How do I send a dos command from a SDI type application?
Win2k, VC6.
Thanks
Dave
|
|
| Back to top |
|
 |
MiniDisc_2k2 Guest
|
Posted: Sun Jun 29, 2003 9:29 pm Post subject: Re: Send DOS Commands from VC++ |
|
|
Put this post in microsoft.public.vc.mfc.
For those who are using standard C++ (just thought I'd get this out):
to send a dos command all you need to do is
system(command);
where command is a char* (c-style string) which contains the command you
wish to do, i.e. this:
system("dir");
or (perhaps the most commonly used one)
system("pause");
-- MiniDisc_2k2
to reply, replace nospam.com with cox dot net.
P.S. I believe that the system() function should still work in your SDI
program.
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|