<te******@gmail.comwrote:
>I have a problem that I can't seem to solve:
I need to write an unmanaged C++ app that will run off of a floppy.
Basically, I will boot into DOS (from a floppy), and run my executable
from the floppy. The executable will crunch some data and then launch
another application.
How can I launch the other application?
You should probably ask in a DOS related ng, this isn't really a
C++ thing.
Anyway, the easiest way might be to use a .bat file that executes the
programs in turn.
(You will have to compile your app with an antique 16 bit compiler
if your exe is to run on bare dos. With modern C++ compilers,
"unmanaged code" is still 32 bits or more and needs some kind
of extender to run on DOS. But go to the DOS forums for details.)