home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / m / m067 / 1.img / MENUS / MAIN.MNU < prev    next >
Encoding:
Text File  |  1992-06-26  |  2.6 KB  |  96 lines

  1. LABEL     "      Main Menu"
  2.  
  3. ENTRY     "Copy 24XMODE", helps\vmode.inf, helps\vmode.hlp
  4.     begin
  5.     INPUT     "Which drive (letter + colon) contains AUTOEXEC.BAT (A:, C:, or D:) ?  "; STRING, %whr_drv, "C:"
  6.     IF     %whr_drv
  7.         begin
  8.         CALL copy %Exe_Path\24xmode.com %whr_drv\ > nul
  9.         CALL copy %whr_drv\autoexec.bat %whr_drv\autoexec.org > nul
  10.         CALL copy %whr_drv\autoexec.bat %Exe_Path\ > nul
  11.         CALL %Exe_Path\rf.exe %whr_drv \24XMODE @@@ MONITOR
  12.         CALL %Exe_Path\add_text %Exe_Path\autoexec.bat temp.$$$ -T
  13.         CALL copy \autoexec.bat %whr_drv\ > nul
  14.         CALL del \temp.$$$
  15.         CALL del \autoexec.bat
  16.         DISPLAY  helps\todo.txt
  17.         CALL %whr_drv\24xmode.com
  18.         GET_VIDEO_MODE
  19.         CALL %Exe_Path\24xmode vga > nul
  20.         DISPLAY  helps\vmode.txt
  21.         end
  22.     end
  23.  
  24. SUBMENU   "Windows 3.x         ▌", helps\win.inf, helps\win.hlp, menus\win.mnu
  25.  
  26. SUBMENU   "AutoCAD / AutoShade ▌", helps\adi.inf, helps\adi.hlp, menus\adi.mnu
  27.  
  28. SUBMENU   "Cadvance            ▌", helps\cadvance.inf, helps\cadvance.hlp, menus\cadvance.mnu
  29.  
  30. SUBMENU   "VersaCAD            ▌", helps\vcad.inf, helps\vcad.hlp, menus\vcad.mnu
  31.  
  32. ENTRY     "Generic CADD Level 3", helps\generic.inf
  33.     begin
  34.     INPUT    "Enter the full location of your Generic CADD Level 3 program:  "; STRING, %path_g4
  35.     IF   %path_g4
  36.         begin
  37.         CALL     %Exe_Path\batch\generic.bat %Exe_Path %path_g4
  38.         DISPLAY helps\gen.hlp
  39.         end
  40.     end
  41.  
  42. ENTRY     "Lotus 1-2-3", helps\lotus.inf
  43.     begin
  44.     INPUT    "Enter the full path of your Lotus 1-2-3 v2.xx program:  "; STRING, %path_123
  45.     IF   %path_123
  46.         begin
  47.         CALL     %Exe_Path\batch\lotus.bat %Exe_Path %path_123
  48.         DISPLAY helps\123.hlp
  49.         end
  50.     end
  51.  
  52. ENTRY    "PCAD Level 2", helps\pcad.inf
  53.     begin
  54.     INPUT    "Enter the full path of your PCAD Level 2 program:  "; STRING, %path_pcd
  55.     IF   %path_pcd
  56.         begin
  57.         CALL     %Exe_Path\batch\pcad.bat %Exe_Path %path_pcd
  58.         DISPLAY helps\pcd.hlp
  59.         end
  60.     end
  61.  
  62. ENTRY     "Word for DOS", helps\word.inf
  63.     begin
  64.     INPUT    "Enter the directory of your Microsoft Word installation:  "; STRING, %path_wd
  65.     IF   %path_wd
  66.         begin
  67.         CALL   %Exe_Path\batch\word.bat %Exe_Path %path_wd
  68.         DISPLAY helps\word.hlp
  69.         end
  70.     end
  71.  
  72. ENTRY    "WordPerfect", helps\wp.inf
  73.     begin
  74.     INPUT    "Where is your WordPerfect installed at?  "; STRING, %path_50, "C:\WP"
  75.     IF   %path_50
  76.         begin
  77.         CALL    %Exe_Path\batch\wp.bat %Exe_Path %path_50
  78.         DISPLAY helps\wp.hlp
  79.         end
  80.     end
  81.  
  82. ENTRY     "Help", helps\help.inf
  83.     begin
  84.     DISPLAY   helps\help.hlp
  85.     end
  86.  
  87. ENTRY     "Exit", helps\exit.inf
  88.     begin
  89.     INPUT     "Do you really want to exit this program?  "; STRING, %exit
  90.     IF   %exit = "yes"
  91.         begin
  92.         EXIT
  93.         end
  94.     end
  95.  
  96.