Browse: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 0 1 2 3 4 5 6 7 8 9

Search / Browse

Mobile Menu

Reply to Re: Menu broken under DOSBox

The MENU6.EXE program here writes a batch file CHOICE.BAT which contains the user''s menu selection. MENU.BAT then runs CHOICE.BAT to start the program the user selected.&nbsp;<div><br></div><div>Unfortunately, DOSBox ignores CHOICE.BAT and runs it''s own CHOICE command, resulting in the ".bat [Y/N]?" prompt, followed by program exit.<div><br></div><div>To fix this, we just need to copy CHOICE.BAT to another filename and then run that file, thereby avoiding the name clash with CHOICE. Here''s a new MENU.BAT containing the fix:</div><div><br></div><div><div>echo off</div><div>menu6.exe</div><div>del run.bat</div><div>copy choice.bat run.bat</div><div>run.bat</div></div></div>

Subject:
Message:

0/1000 characters