home *** CD-ROM | disk | FTP | other *** search
- LABEL " Main Menu"
-
- ENTRY "Copy 24XMODE", helps\vmode.inf, helps\vmode.hlp
- begin
- INPUT "Which drive (letter + colon) contains AUTOEXEC.BAT (A:, C:, or D:) ? "; STRING, %whr_drv, "C:"
- IF %whr_drv
- begin
- CALL copy %Exe_Path\24xmode.com %whr_drv\ > nul
- CALL copy %whr_drv\autoexec.bat %whr_drv\autoexec.org > nul
- CALL copy %whr_drv\autoexec.bat %Exe_Path\ > nul
- CALL %Exe_Path\rf.exe %whr_drv \24XMODE @@@ MONITOR
- CALL %Exe_Path\add_text %Exe_Path\autoexec.bat temp.$$$ -T
- CALL copy \autoexec.bat %whr_drv\ > nul
- CALL del \temp.$$$
- CALL del \autoexec.bat
- DISPLAY helps\todo.txt
- CALL %whr_drv\24xmode.com
- GET_VIDEO_MODE
- CALL %Exe_Path\24xmode vga > nul
- DISPLAY helps\vmode.txt
- end
- end
-
- SUBMENU "Windows 3.x ▌", helps\win.inf, helps\win.hlp, menus\win.mnu
-
- SUBMENU "AutoCAD / AutoShade ▌", helps\adi.inf, helps\adi.hlp, menus\adi.mnu
-
- SUBMENU "Cadvance ▌", helps\cadvance.inf, helps\cadvance.hlp, menus\cadvance.mnu
-
- SUBMENU "VersaCAD ▌", helps\vcad.inf, helps\vcad.hlp, menus\vcad.mnu
-
- ENTRY "Generic CADD Level 3", helps\generic.inf
- begin
- INPUT "Enter the full location of your Generic CADD Level 3 program: "; STRING, %path_g4
- IF %path_g4
- begin
- CALL %Exe_Path\batch\generic.bat %Exe_Path %path_g4
- DISPLAY helps\gen.hlp
- end
- end
-
- ENTRY "Lotus 1-2-3", helps\lotus.inf
- begin
- INPUT "Enter the full path of your Lotus 1-2-3 v2.xx program: "; STRING, %path_123
- IF %path_123
- begin
- CALL %Exe_Path\batch\lotus.bat %Exe_Path %path_123
- DISPLAY helps\123.hlp
- end
- end
-
- ENTRY "PCAD Level 2", helps\pcad.inf
- begin
- INPUT "Enter the full path of your PCAD Level 2 program: "; STRING, %path_pcd
- IF %path_pcd
- begin
- CALL %Exe_Path\batch\pcad.bat %Exe_Path %path_pcd
- DISPLAY helps\pcd.hlp
- end
- end
-
- ENTRY "Word for DOS", helps\word.inf
- begin
- INPUT "Enter the directory of your Microsoft Word installation: "; STRING, %path_wd
- IF %path_wd
- begin
- CALL %Exe_Path\batch\word.bat %Exe_Path %path_wd
- DISPLAY helps\word.hlp
- end
- end
-
- ENTRY "WordPerfect", helps\wp.inf
- begin
- INPUT "Where is your WordPerfect installed at? "; STRING, %path_50, "C:\WP"
- IF %path_50
- begin
- CALL %Exe_Path\batch\wp.bat %Exe_Path %path_50
- DISPLAY helps\wp.hlp
- end
- end
-
- ENTRY "Help", helps\help.inf
- begin
- DISPLAY helps\help.hlp
- end
-
- ENTRY "Exit", helps\exit.inf
- begin
- INPUT "Do you really want to exit this program? "; STRING, %exit
- IF %exit = "yes"
- begin
- EXIT
- end
- end
-
-