I need to wrap an interactive DOS application with GUI. The DOS application does not accept any command line parameters. As such, all works have to be done interactively.
The process to get a job done is as follow: 1. Start the DOS application in DOS command prompt. 2. A screen appears and we are asked to "Press any key to start" 3. Pressing any key leads to "Menu 1" where we are presented with choices: [C] .. Create new file [L] .. Load existing file [Q] .. Quite Program 4. Press 'L' will lead to another screen, that shows the default drive to load the project file. If the drive is not the desired one, "Press [SPACE BAR] to change Drive" 5. Press "return" to confirm the drive 6. All relevant project files will be displayed, we can then use up-down-left-right arrows to navigate and press enter to load the file. 7. And the interactive process goes on, until a textual output is generated.
I don't have the source code of the DOS application.
Is there any tool available that allow me to drive the whole process through a definition file. Such tool will allow me to develop a GUI to complete the job without needing the user to interact with the old DOS application.
Thanks. David