T
tempnode
I have a problem that I can't seem to solve:
I need to write a 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?
I've tried system(), but it needs a specific path, which isn't viable
in DOS mode. The two apps will be in the same directory, so
basically
this is the process:
CrunchData();
LaunchApp();
How could I launch the other app? I don't think ShellExecute() or the
Process class will work since this will be running in DOS, but I may
be wrong.
Thanks so much.
I need to write a 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?
I've tried system(), but it needs a specific path, which isn't viable
in DOS mode. The two apps will be in the same directory, so
basically
this is the process:
CrunchData();
LaunchApp();
How could I launch the other app? I don't think ShellExecute() or the
Process class will work since this will be running in DOS, but I may
be wrong.
Thanks so much.