home *** CD-ROM | disk | FTP | other *** search
/ Inside Multimedia 1995 February / IMM0295.ISO / driver / orchid / p9000 / install.dat < prev    next >
Text File  |  1993-12-10  |  30KB  |  1,146 lines

  1. /*-----------------------------------------------------------------------
  2.   File Name: install.dat
  3.  
  4.   History:  Robert Gilsdorf (January 13, 1993)
  5.   Description: This is a script file that automates the installation process 
  6.            of the Orchid P9000 display drivers.
  7.  -----------------------------------------------------------------------*/
  8. @DefineProject
  9.     @Name      = "Orchid P9000 VLB"
  10.     @Version   = "1.3"
  11.     @Immediate = 1 
  12.     @Subdir    = "\\"
  13.     @OutDrive  = C
  14. @EndProject
  15.  
  16. /*---------------------------- Define String -----------------------------*/
  17. @DefineVars
  18.  @Qstring @msgDDI       = "Display Driver Installation"
  19.  @Qstring @msgDrive     = "Please Select Destination Drive:"
  20.  @Qstring @msgDir       = "Please Enter a Directory name or select ENTER to accept default."
  21.  @Qstring @msgPSAV      = "Please Select Version:"
  22.  @Qstring @msgPSAA      = "Please Select An Application:"
  23.  @Qstring @msgDDNE      = "does not exist."
  24.  @Qstring @msgCont      = "If you choose to continue, one will be created."
  25.  @Qstring @msgNoFile    = "Some files are missing in your input directory:"
  26.  @Qstring @msgNPI       = "may not be properly installed."
  27.  @Qstring @Reenter      = " Enter Again"
  28.  @Qstring @Cont         = "  Continue  "
  29.  @Qstring @NameWin      = "Microsoft Windows 3.1"
  30.  @Qstring @NameCADsys   = "Computer Aided Design (AutoDesk's Products)"
  31.  @Qstring @NameACAD     = "AutoCAD"
  32.  @Qstring @NameDesk     = "Desktop Publishing"
  33.  @Qstring @NameGem      = "GEM Desktop"
  34.  @Qstring @NameVentura  = "Ventura Publisher"
  35.  @Qstring @NameLotus    = "Lotus 1-2-3"
  36.  @Qstring @NameWord     = "Word Processing"
  37.  @Qstring @NameWP       = "WordPerfect"
  38.  @Qstring @NameMSWord   = "Microsoft Word"
  39.  @Qstring @NameInst     = "Introduction, Installation and Switch Settings"
  40.  @Qstring @NameMore     = "More...."
  41.  @Qstring @NameOtherp    = "Other Orchid Products"
  42.  @Qstring @NameTchsupt   = "Technical Support"
  43.  @EndVars
  44.  
  45. /*--------------------- Introduction Message -----------------------------*/
  46. @Display
  47. @If (@CheckCard ("c000", "0048", "P9000 VLB") == 1)
  48.   @Goto MenuJumper
  49. @Elseif (@CheckCard ("c000", "0047", "P9000 VLB") == 1)
  50.   @Goto MenuJumper
  51. @Else 
  52.   @Cls
  53.  
  54.  
  55.         █████████████████ ERROR ████████████████
  56.         █                                      █
  57.         █  Orchid P9000 video adapter is not   █
  58.         █  detected in your system.            █
  59.         █                                      █
  60.         █  If you choose to continue this      █
  61.         █  installation, the drivers may not   █
  62.         █  respond correctly.                  █
  63.         █                                      █
  64.         █  If you are installing Windows to a  █
  65.         █  Network Server, press any key to    █
  66.         █  continue.                           █
  67.         █                                      █
  68.         █  PRESS F3 TO ABORT INSTALLATION      █
  69.         █                                      █
  70.         ████████████████████████████████████████
  71.  
  72.  @Pause
  73. @Endif
  74.  
  75. MenuJumper:
  76. @cls
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.             Orchid P9000 VLB Video Adapter
  84.  
  85.  
  86.               Display Driver Installation Program
  87.  
  88.  
  89.                    Disk Release 1.3
  90.  
  91.  
  92.  
  93.  
  94.   @Pause
  95.  
  96.  
  97. @Cls
  98. @EndDisplay
  99.  
  100.  
  101.  
  102. /*--------------------- Drive C: check for Installation-----------------*/
  103.  
  104. @If ("@Indrive"=="C")
  105.     @Display
  106.  
  107.     The Install Program must be run from a Floppy Drive.  Please use the  
  108.     <ESC> key and start over from the Floppy drive.
  109.  
  110.      @Pause
  111.     @Abort
  112.    @EndDisplay
  113. @EndIf
  114.  
  115. /*---------------------- Installation Main Menu --------------------------*/
  116. MenuMain:
  117.  @FlushOptions
  118.  @EnableF1(1)
  119.  @GetOption
  120.  @Cls
  121.   @Option 1000 = "@NameWin"
  122.   @Option 4000 = "@NameLotus"
  123.   @Option 2000 = "@NameCADsys"
  124.   @Option 3000 = "@NameDesk"
  125.   @Option 5000 = "@NameWord"
  126.   @Option 6000 = "@NameInst"
  127.   @Option 7000 = "@NameMore"
  128.  @EndOption
  129.  
  130.  @If (@Esc)
  131.      @Exit
  132.  @Elseif (@KeyF1)
  133.      @Goto MenuMainHelp
  134.  @ElseIf (1000 [= @Option)
  135.      @Goto MenuWin
  136.  @ElseIf (2000 [= @Option)
  137.      @Goto MenuCADsys
  138.  @ElseIf (3000 [= @Option)
  139.      @Goto MenuDesktop
  140.  @ElseIf (4000 [= @Option)
  141.      @Goto MenuLotus
  142.  @ElseIf (5000 [= @Option)
  143.      @Goto MenuWordProcess
  144.  @ElseIf (6000 [= @Option)
  145.      @Goto MenuInstall
  146.  @ElseIf (7000 [= @Option)
  147.      @Goto MenuInfo
  148.  @Else
  149.      @Goto MenuMain
  150.  @Endif
  151.  
  152. /*--------------------- Handle Information Menu  ----------------------------*/
  153. MenuInfo:
  154. @ClearOption(7040)
  155. @ClearOption(7045) 
  156. @ClearOption(7050)
  157.  @EnableF1(0)
  158.  @GetOption
  159.  @Cls
  160.     
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.   @Option 7040 = "@NameOtherp"
  174.   @Option 7045 = "Other Orchid Video Products"
  175.   @Option 7050 = "@NameTchsupt"
  176.  
  177.  
  178.   @EndOption
  179.  
  180.  
  181.  @If (@Esc)
  182.      @Goto MenuMain
  183. @ElseIf (7040 [=@Option)
  184.      @Help ("@ExePath\\install.hlp", "HelpOtherp", "EndOtherp")
  185. @ElseIf (7045 [=@Option)
  186.      @Help ("@ExePath\\install.hlp", "HelpFah", "EndFah")
  187. @ElseIf (7050 [=@Option)
  188.      @Help ("@ExePath\\install.hlp", "HelpTchsupt", "EndTchsupt")
  189.  
  190. @endif
  191. @Goto MenuInfo
  192.  
  193. /*--------------------- Handle Help  Menu  ----------------------------*/
  194.  
  195.  
  196. MenuMainHelp:
  197.  
  198. @If (1000 [= @Option)  /* Windows */
  199.   @Help ("@ExePath\\install.hlp", "HelpWin", "EndWin")
  200. @ElseIf (4000 [= @Option)  /* Lotus */
  201.   @Help ("@ExePath\\install.hlp", "HelpLotus", "HelpLotusInst")
  202. @Elseif (2000 [= @Option) /* CAD's */
  203.   @Help ("@ExePath\\install.hlp", "HelpCADMain", "EndCADMain")
  204. @Elseif (3000 [= @Option) /* Desktop */
  205.   @Help ("@ExePath\\install.hlp", "HelpDeskMain", "EndDeskMain")
  206. @Elseif (5000 [= @Option) /* Word Process */
  207.   @Help ("@ExePath\\install.hlp", "HelpWordPMain", "EndWordPMain")
  208. @Elseif (6000 [= @Option) /* Installation */
  209.   @Help ("@ExePath\\install.hlp", "HelpIntro", "EndIntro")
  210. @Elseif (7000 [= @Option) /* More.... */
  211.   @Help ("@ExePath\\install.hlp", "HelpMore", "EndMore")
  212. @EndIf   
  213.  
  214. @Goto MenuMain
  215.  
  216. /*--------------- Installation and switches help menu  -----------------*/
  217. MenuInstall:
  218. @ClearOption(6040)
  219. @ClearOption(6045) 
  220. @ClearOption(6050)
  221.  @EnableF1(0)
  222.  @GetOption
  223.  @Cls
  224.     
  225.  
  226.  
  227.  
  228.  
  229.  
  230.  
  231.  
  232.  
  233.  
  234.  
  235.  
  236.  
  237.   @Option 6040 = "Introduction"
  238.   @Option 6045 = "Switch Setting"
  239.   @Option 6050 = "Installation Instructions"
  240.  
  241.  
  242.   @EndOption
  243.  
  244.  
  245.  @If (@Esc)
  246.      @Goto MenuMain
  247. @ElseIf (6040 [=@Option)
  248.      @Help ("@ExePath\\install.hlp", "HelpIntro", "EndIntro")
  249. @ElseIf (6045 [=@Option)
  250.      @Help ("@ExePath\\install.hlp", "HelpSwitch", "EndSwitch")
  251. @ElseIf (6050 [=@Option)
  252.      @Help ("@ExePath\\install.hlp", "HelpInst", "EndInst")
  253.  
  254. @endif
  255. @Goto MenuInstall
  256.  
  257.  
  258. /*--------------- Windows 3.x Driver Installation (1000) -----------------*/
  259. MenuWin:
  260.  
  261. @EnableF1(0)
  262. @GetOutDrive
  263.  @Suppress A
  264.  @Suppress B 
  265.  @Cls
  266.  @NameWin @msgDDI
  267.  @msgDrive
  268. @EndOutDrive
  269. @If (@Esc) @Goto MenuMain @EndIf
  270.  
  271. @GetSubdir
  272.  @Default = "\\P9000"    
  273.  @Cls
  274.  @NameWin @msgDDI
  275.  @msgDir
  276.  
  277.  
  278. @EndSubdir
  279. @If (@Esc) @Goto MenuWin @EndIf
  280.  
  281. @ClearOption(1)
  282. @ClearOption(2)
  283. @EnableF1(0)
  284.  
  285.  
  286. CopyFileWin:
  287. @DefineDisk
  288. @Label = "Disk #1"
  289. @BeginLib P9000.001 
  290.  
  291.  @F p9000res.dat  @O @OutDrive:\@SubDir\*.*
  292.  @F 8514fix.fon   @O @OutDrive:\@SubDir\*.*
  293.  @F 8514oem.fon   @O @OutDrive:\@SubDir\*.*
  294.  @F 8514sys.fon   @O @OutDrive:\@SubDir\*.*
  295.  @F cga40850.fon  @O @OutDrive:\@SubDir\*.*
  296.  @F cga40woa.fon  @O @OutDrive:\@SubDir\*.*
  297.  @F cga80850.fon  @O @OutDrive:\@SubDir\*.*
  298.  @F cga80woa.fon  @O @OutDrive:\@SubDir\*.*
  299.  @F coure.fon     @O @OutDrive:\@SubDir\*.*
  300.  @F courf.fon     @O @OutDrive:\@SubDir\*.*
  301.  @F ega40850.fon  @O @OutDrive:\@SubDir\*.*
  302.  @F ega40woa.fon  @O @OutDrive:\@SubDir\*.*
  303.  @F ega80850.fon  @O @OutDrive:\@SubDir\*.*
  304.  @F ega80woa.fon  @O @OutDrive:\@SubDir\*.*
  305.  @F modern.fon    @O @OutDrive:\@SubDir\*.*
  306.  @F roman.fon     @O @OutDrive:\@SubDir\*.*
  307.  @F script.fon    @O @OutDrive:\@SubDir\*.*
  308.  @F serife.fon    @O @OutDrive:\@SubDir\*.*
  309.  @F seriff.fon    @O @OutDrive:\@SubDir\*.*
  310.  @F smalle.fon    @O @OutDrive:\@SubDir\*.*
  311.  @F smallf.fon    @O @OutDrive:\@SubDir\*.*
  312.  @F sserife.fon   @O @OutDrive:\@SubDir\*.*
  313.  @F sseriff.fon   @O @OutDrive:\@SubDir\*.*
  314.  @F symbole.fon   @O @OutDrive:\@SubDir\*.*
  315.  @F symbolf.fon   @O @OutDrive:\@SubDir\*.*
  316.  @F times.fon     @O @OutDrive:\@SubDir\*.*
  317.  @F vgafix.fon    @O @OutDrive:\@SubDir\*.*
  318.  @F vgaoem.fon    @O @OutDrive:\@SubDir\*.*
  319.  @F inst.exe      @O @OutDrive:\@SubDir\*.* 
  320.  @F inst.hlp      @O @OutDrive:\@SubDir\*.* 
  321.  @F vgacolor.2gr  @O @OutDrive:\@SubDir\*.*  
  322.  @F p9000_08.drv  @O @OutDrive:\@SubDir\*.*
  323.  @F p9000_16.drv  @O @OutDrive:\@SubDir\*.*
  324.  @F p9000_32.drv  @O @OutDrive:\@SubDir\*.*
  325.  @F p9000.3gr     @O @OutDrive:\@SubDir\*.*
  326.  @F oemsetup.inf  @O @OutDrive:\@SubDir\*.*
  327.  @F p9000vdd.386  @O @OutDrive:\@SubDir\*.*
  328.  @F p9000res.ini  @O @OutDrive:\@SubDir\*.*
  329.  @F vgasys.fon    @O @OutDrive:\@SubDir\*.*
  330.  @F p9init.dll    @O @OutDrive:\@SubDir\*.*
  331.  
  332.  
  333.  
  334. @EndLib 
  335. @EndDisk
  336.  
  337.  
  338. @Help ("@ExePath\\install.hlp", "HelpWin", "EndWin")
  339. @Display
  340. @Cls
  341.  
  342.  
  343.  
  344.  
  345. ***************************************************************************
  346. *** The installation of the Orchid P9000 Drivers are now completed.     ***
  347. ***************************************************************************
  348.  
  349.  
  350. @Pause
  351. @EndDisplay
  352. @Goto MenuMain
  353.  
  354. /*--------------- Lotus 1-2-3 Driver Installation (4000) -----------------*/
  355. MenuLotus:
  356.  
  357.  
  358.  
  359. @Help ("@ExePath\\install.hlp", "HelpLotusInst", "EndLotus")
  360. @Goto MenuMain
  361.  
  362.  
  363.  
  364.  
  365. /*------------- AutoCAD 10, 11 Driver Installation (2100)-----------------*/
  366. MenuCADsys:
  367. @ClearOption (2105)
  368. @ClearOption (2120)
  369. @ClearOption (2125)
  370. @ClearOption (2130)
  371. @ClearOption (2145)
  372. @ClearOption (2150)
  373. @EnableF1(1)
  374.  
  375. @GetOption @Cls
  376.  @NameACAD @msgDDI
  377.  @msgPSAV
  378.  @Option 2105 = "ADI 4.2 Features and Commands Help Menu (Reading Recommended)"
  379.  @Option 2130 = "AutoCAD Release 11 (Protected Mode ADI 4.2)"
  380.  @Option 2145 = "AutoCAD Release 12 (Protected Mode ADI 4.2)"
  381.  @Option 2120 = "AutoDesk's 3D Studio version 1.0 & 2.0 (PADI 4.2)"
  382.  @Option 2125 = "AutoDesk's AutoShade version 2.1 (PADI 4.2)"
  383.  @Option 2150 = "Frequency Reconfiguation Option" 
  384. @EndOption
  385.  
  386. @If (@Esc)
  387.  @Goto MenuMain
  388. @ElseIf (@KeyF1)
  389.  @Goto MenuACADHelp
  390. @ElseIf (2105 [=@Option)
  391.      @Goto MenuADI42
  392. @Endif
  393.  
  394. InputDirACAD:
  395. @EnableF1(0)
  396. @GetOutDrive
  397.  @Suppress A
  398.  @Suppress B
  399.  @Cls
  400.  @NameACAD @msgDDI
  401.  @msgDrive
  402.  
  403.  
  404.  
  405.  
  406.  
  407.  
  408.  
  409.  
  410.  
  411.  
  412.  
  413. @EndOutDrive
  414. @If (@Esc) @Goto MenuCADsys @Endif
  415.  
  416.  
  417. @GetSubdir
  418.  @If (2120 [= @Option)
  419.   @Default = "\\3DS"
  420.  @Elseif (2125 [= @Option)
  421.   @Default = "\\SHADE"
  422.  @Elseif (2130 [= @Option)
  423.   @Default = "\\ACAD11"
  424.  @Elseif (2145 [= @Option)
  425.   @Default = "\\ACAD12"
  426.  @Elseif (2150 [= @Option)
  427.   Input location for AutoDesk Product: \\3DS, \\SHADE, \\ACAD11, \\ACAD12
  428.   @Default = "\\ACAD"
  429.  @Endif
  430.  @Cls
  431.  @NameACAD @msgDDI
  432.  @msgDir
  433.  
  434.  
  435. @EndSubdir
  436. @If (@Esc) @Goto MenuCADsys @Endif
  437.  
  438. @ClearOption(1)
  439. @ClearOption(2)
  440. @If ((@Exists "@OutDrive:\\@SubDir") == 0)
  441.  @EnableF1(0)
  442.  @GetOption
  443.   @LocalWindow (10,39) 
  444.   @Cls
  445.   @NameACAD @msgDDI
  446.   @OutDrive:@SubDir @msgDDNE
  447.   @msgCont
  448.   @Option 1 = "@Reenter"
  449.   @Option 2 = "@Cont"
  450.  @EndOption
  451. @Endif
  452.  
  453. @If (@Esc)
  454.  @Goto MenuCADsys
  455. @ElseIf (1 [= @Option)
  456.   @Goto InputDirACAD
  457. @ElseIf (2150 [= @Option)
  458.   @Goto MenuFreq
  459. @Endif
  460.  
  461. @DefineDisk
  462.  @Label = "Disk #1"
  463.  @BeginLib P9000.001 
  464.  
  465.  @F 15x25.aqf     @O @OutDrive:\@SubDir\*.* @Option 2120
  466.  @F 16x30.aqf     @O @OutDrive:\@SubDir\*.* @Option 2120 
  467.  @F 6x9.aqf       @O @OutDrive:\@SubDir\*.* @Option 2120 
  468.  @F 8x16.aqf      @O @OutDrive:\@SubDir\*.* @Option 2120 
  469.  @F 9x15.aqf      @O @OutDrive:\@SubDir\*.* @Option 2120
  470.  @F 12x24.aqf     @O @OutDrive:\@SubDir\*.* @Option 2120
  471.  @F 12x20.aqf     @O @OutDrive:\@SubDir\*.* @Option 2120
  472.  @F rcp9_VLB.exp  @O @OutDrive:\@SubDir\*.* @Option 2120
  473.  @F AQ_9000.INI   @O @OutDrive:\@SubDir\*.* @Option 2120
  474.  
  475.  @F 15x25.aqf     @O @OutDrive:\@SubDir\*.* @Option 2125
  476.  @F 16x30.aqf     @O @OutDrive:\@SubDir\*.* @Option 2125 
  477.  @F 6x9.aqf       @O @OutDrive:\@SubDir\*.* @Option 2125 
  478.  @F 8x16.aqf      @O @OutDrive:\@SubDir\*.* @Option 2125 
  479.  @F 9x15.aqf      @O @OutDrive:\@SubDir\*.* @Option 2125
  480.  @F 12x24.aqf     @O @OutDrive:\@SubDir\*.* @Option 2125
  481.  @F 12x20.aqf     @O @OutDrive:\@SubDir\*.* @Option 2125
  482.  @F rcp9_VLB.exp  @O @OutDrive:\@SubDir\*.* @Option 2125
  483.  @F AQ_9000.INI   @O @OutDrive:\@SubDir\*.* @Option 2125
  484.  
  485.  @F 15x25.aqf     @O @OutDrive:\@SubDir\*.* @Option 2130
  486.  @F 16x30.aqf     @O @OutDrive:\@SubDir\*.* @Option 2130 
  487.  @F 6x9.aqf       @O @OutDrive:\@SubDir\*.* @Option 2130 
  488.  @F 8x16.aqf      @O @OutDrive:\@SubDir\*.* @Option 2130 
  489.  @F 9x15.aqf      @O @OutDrive:\@SubDir\*.* @Option 2130
  490.  @F 12x24.aqf     @O @OutDrive:\@SubDir\*.* @Option 2130
  491.  @F 12x20.aqf     @O @OutDrive:\@SubDir\*.* @Option 2130
  492.  @F rcp9_VLB.exp  @O @OutDrive:\@SubDir\*.* @Option 2130
  493.  @F AQ_9000.INI   @O @OutDrive:\@SubDir\*.* @Option 2130
  494.  
  495.  @F 15x25.aqf     @O @OutDrive:\@SubDir\DRV\*.* @Option 2145
  496.  @F 16x30.aqf     @O @OutDrive:\@SubDir\DRV\*.* @Option 2145 
  497.  @F 6x9.aqf       @O @OutDrive:\@SubDir\DRV\*.* @Option 2145 
  498.  @F 8x16.aqf      @O @OutDrive:\@SubDir\DRV\*.* @Option 2145 
  499.  @F 9x15.aqf      @O @OutDrive:\@SubDir\DRV\*.* @Option 2145
  500.  @F 12x24.aqf     @O @OutDrive:\@SubDir\DRV\*.* @Option 2145
  501.  @F 12x20.aqf     @O @OutDrive:\@SubDir\DRV\*.* @Option 2145
  502.  @F rcp9_VLB.exp  @O @OutDrive:\@SubDir\DRV\*.* @Option 2145
  503.  @F AQ_9000.INI   @O @OutDrive:\@SubDir\*.* @Option 2145
  504.  
  505. @EndLib 
  506. @EndDisk
  507.  
  508.  
  509. MenuFreq:
  510. @ClearOption (2187)
  511. @ClearOption (2188)
  512. @ClearOption (2189)
  513. @ClearOption (2190)
  514. @ClearOption (2191)
  515. @ClearOption (2192)
  516. @ClearOption (2193)
  517. @ClearOption (2194)
  518. @ClearOption (2195)
  519. @ClearOption (2196)
  520. @ClearOption (2197)
  521. @ClearOption (2198)
  522. @ClearOption (2199)
  523. @EnableF1(1)
  524.  
  525.  
  526.  
  527.  
  528.  
  529. @GetOption @Cls
  530.  Which Frequency can your monitor support:
  531.  For more information about Frequencies, select the <F1> key.
  532.  @Option 2187 = "600x480x60Hz  Low End Monitors"
  533.  @Option 2188 = "600x480x72Hz  Most Monitors"
  534.  @Option 2189 = "600x480x90Hz  NEC 4FG 5FG 6FG, Nanao 9080i 340iw 550i"
  535. @EndOption
  536.  
  537.  
  538.  
  539.  
  540.  
  541.  
  542.  
  543. @If (@Esc)
  544.      @Goto MenuFreq
  545. @ElseIf (@KeyF1)
  546.      @Help ("@ExePath\\install.hlp", "HelpFreq", "EndFreq")
  547.      @Goto MenuFreq
  548. @Endif
  549.  
  550.  
  551.  
  552.  
  553.  
  554.  
  555. @GetOption @Cls
  556.  Which Frequency can your monitor support:
  557.  For more information about Frequencies, select the <F1> key.
  558.  @Option 2190 = "800x600x60Hz  Low End Monitors"
  559.  @Option 2191 = "800x600x72Hz  Most Monitors"
  560.  @Option 2192 = "800x600x90Hz  NEC 4FG 5FG 6FG, Nanao 9080i 340iw 550i"
  561. @EndOption
  562.  
  563.  
  564.  
  565.  
  566.  
  567.  
  568.  
  569. @If (@Esc)
  570.      @Goto MenuFreq
  571. @ElseIf (@KeyF1)
  572.      @Help ("@ExePath\\install.hlp", "HelpFreq", "EndFreq")
  573.      @Goto MenuFreq
  574. @Endif
  575.  
  576.  
  577.  
  578.  
  579.  
  580.  
  581.  
  582. @GetOption @Cls
  583.  Which Frequency can your monitor support:
  584.  For more information about Frequencies, select the <F1> key.
  585.  @Option 2193 = "1024x768x60Hz  Low End Monitors"
  586.  @Option 2194 = "1024x768x70Hz  Most Monitors"
  587.  @Option 2195 = "1024x768x74Hz  NEC 4FG 5FG 6FG, Nanao 9080i 340iw 550i"
  588. @EndOption
  589.  
  590.  
  591.  
  592.  
  593.  
  594.  
  595.  
  596. @If (@Esc)
  597.      @Goto MenuFreq
  598. @ElseIf (@KeyF1)
  599.      @Help ("@ExePath\\install.hlp", "HelpFreq", "EndFreq")
  600.      @Goto MenuFreq
  601. @Endif
  602.  
  603.  
  604.  
  605.  
  606.  
  607.  
  608.  
  609. @GetOption @Cls
  610.  Which Frequency can your monitor support:
  611.  For more information about Frequencies, select the <F1> key.
  612.  @Option 2197 = "1280x1024x60Hz  Default (Non-Interlaced Mode)"
  613.  @Option 2198 = "1280x1024x72Hz  NEC 5FG 6FG, Nanao F550i"
  614.  @Option 2199 = "1280x1024x74Hz  NEC 5FG 6FG, Nanao F550i"
  615. @EndOption
  616.  
  617.  
  618.  
  619.  
  620.  
  621.  
  622. @If (@Esc)
  623.      @Goto MenuFreq
  624. @ElseIf (@KeyF1)
  625.      @Help ("@ExePath\\install.hlp", "HelpFreq", "EndFreq")
  626.      @Goto MenuFreq
  627. @Endif
  628.  
  629.  
  630.  
  631.  
  632. @If (2187 [= @Option)
  633.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "600x480x8", "link=", "link=800x600", "REPLACE")
  634.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "600x480x16", "link=", "link=800x600", "REPLACE")
  635.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "600x480x24", "link=", "link=800x600", "REPLACE")
  636. @Elseif (2188 [= @Option)
  637.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "600x480x8", "link=", "link=800x600x72Hz", "REPLACE")
  638.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "600x480x16", "link=", "link=800x600x72Hz", "REPLACE")
  639.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "600x480x24", "link=", "link=800x600x72Hz", "REPLACE")
  640. @Elseif (2189 [= @Option)
  641.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "600x480x8", "link=", "link=800x600x90Hz", "REPLACE")
  642.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "600x480x16", "link=", "link=800x600x90Hz", "REPLACE")
  643.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "600x480x24", "link=", "link=800x600x90Hz", "REPLACE")
  644. @EndIf
  645.  
  646. @If (2190 [= @Option)
  647.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "800x600x8", "link=", "link=800x600", "REPLACE")
  648.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "800x600x16", "link=", "link=800x600", "REPLACE")
  649.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "800x600x24", "link=", "link=800x600", "REPLACE")
  650. @Elseif (2191 [= @Option)
  651.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "800x600x8", "link=", "link=800x600x72Hz", "REPLACE")
  652.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "800x600x16", "link=", "link=800x600x72Hz", "REPLACE")
  653.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "800x600x24", "link=", "link=800x600x72Hz", "REPLACE")
  654. @Elseif (2192 [= @Option)
  655.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "800x600x8", "link=", "link=800x600x90Hz", "REPLACE")
  656.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "800x600x16", "link=", "link=800x600x90Hz", "REPLACE")
  657.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "800x600x24", "link=", "link=800x600x90Hz", "REPLACE")
  658. @EndIf
  659.  
  660. @If (2193 [= @Option)
  661.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "1024x768x8", "link=", "link=1024x768", "REPLACE")
  662.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "1024x768x16", "link=", "link=1024x768", "REPLACE")
  663. @Elseif (2194 [= @Option)
  664.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "1024x768x8", "link=", "link=1024x768x70Hz", "REPLACE")
  665.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "1024x768x16", "link=", "link=1024x768X70Hz", "REPLACE")
  666. @Elseif (2195 [= @Option)
  667.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "1024x768x8", "link=", "link=1024x768x74Hz", "REPLACE")
  668.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "1024x768x16", "link=", "link=1024x768X70Hz", "REPLACE")
  669. @Elseif (2196 [= @Option)
  670.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "1024x768x8", "link=", "link=1024x768x90Hz", "REPLACE")
  671.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "1024x768x16", "link=", "link=1024x768X70Hz", "REPLACE")
  672. @EndIf
  673.  
  674. @If (2197 [= @Option)
  675.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "1280x1024x8", "link=", "link=1280x1024", "REPLACE")
  676. @Elseif (2198 [= @Option)
  677.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "1280x1024x8", "link=", "link=1280x1024x72Hz", "REPLACE")
  678. @Elseif (2199 [= @Option)
  679.   @WriteFile ("@OutDrive:\\@SubDir\\aq_9000.ini", "1280x1024x8", "link=", "link=1280x1024x74Hz", "REPLACE")
  680. @EndIf
  681.  
  682.  
  683.  
  684. @If (2120 [= @Option)
  685.  @WriteFile ("@BootDrive:\\autoexec.bat", "NOSECTION", "DSPADI",
  686.          "SET DSPADI=@OutDrive:\\@SubDir\\rcp9_vlb.exp", "REPLACE")
  687.  @WriteFile ("@BootDrive:\\autoexec.bat", "NOSECTION", "RDPADI",
  688.          "SET RDPADI=@OutDrive:\\@SubDir\\rcp9_vlb.exp", "REPLACE")
  689.  @WriteFile ("@BootDrive:\\autoexec.bat", "NOSECTION", "RCPADI",
  690.          "SET RCPADI=@OutDrive:\\@SubDir\\rcp9_vlb.exp", "REPLACE")
  691.  @WriteFile ("@BootDrive:\\autoexec.bat", "NOSECTION", "p9000resini.env",
  692.          "SET P9000resini.env=@OutDrive:\\@SubDir\\AQ_9000.INI", "REPLACE")
  693.  
  694.  @Help ("@ExePath\\install.hlp", "Help3DS", "End3DS")
  695. @ElseIf (2125 [= @Option)
  696.  @WriteFile ("@BootDrive:\\autoexec.bat", "NOSECTION", "DSPADI",
  697.          "SET DSPADI=@OutDrive:\\@SubDir\\rcp9_vlb.exp", "REPLACE")
  698.  @WriteFile ("@BootDrive:\\autoexec.bat", "NOSECTION", "RDPADI",
  699.          "SET RDPADI=@OutDrive:\\@SubDir\\rcp9_vlb.exp", "REPLACE")
  700.  @WriteFile ("@BootDrive:\\autoexec.bat", "NOSECTION", "RCPADI",
  701.          "SET RCPADI=@OutDrive:\\@SubDir\\rcp9_vlb.exp", "REPLACE")
  702.  @WriteFile ("@BootDrive:\\autoexec.bat", "NOSECTION", "SHADE",
  703.          "SET SHADE=@OutDrive:\\@SubDir\\rmansupt", "REPLACE")
  704.  @WriteFile ("@BootDrive:\\autoexec.bat", "NOSECTION", "p9000resini.env",
  705.          "SET P9000resini.env=@OutDrive:\\@SubDir\\AQ_9000.INI", "REPLACE")
  706.  
  707.  @Help ("@ExePath\\install.hlp", "HelpShade", "EndShade")
  708. @Elseif (2130 [= @Option)
  709.  @WriteFile ("@BootDrive:\\autoexec.bat", "NOSECTION", "DSPADI",
  710.          "SET DSPADI=@OutDrive:\\@SubDir\\rcp9_vlb.exp", "REPLACE")
  711.  @WriteFile ("@BootDrive:\\autoexec.bat", "NOSECTION", "p9000resini.env",
  712.          "SET P9000resini.env=@OutDrive:\\@SubDir\\AQ_9000.INI", "REPLACE")
  713.  
  714.  @Help ("@ExePath\\install.hlp", "HelpACAD11", "EndACAD11")
  715. @Elseif (2145 [= @Option)
  716.  @WriteFile ("@BootDrive:\\autoexec.bat", "NOSECTION", "DSPADI",
  717.          "SET ACADDRV=@OutDrive:\\@SubDir\\drv\\", "REPLACE")
  718.  @WriteFile ("@BootDrive:\\autoexec.bat", "NOSECTION", "p9000resini.env",
  719.          "SET P9000resini.env=@OutDrive:\\@SubDir\\AQ_9000.INI", "REPLACE")
  720.  
  721.  @Help ("@ExePath\\install.hlp", "HelpACAD12", "EndACAD12") 
  722.  
  723. @EndIf   
  724.               
  725. @Goto MenuCADsys
  726.  
  727. /*----------------------- ADI 4.2 Help -----------------------------------*/
  728.  
  729. MenuADI42:
  730. @ClearOption(2910)
  731. @ClearOption(2920)
  732. @ClearOption(2925) 
  733. @ClearOption(2930)
  734. @ClearOption(2933)  
  735. @ClearOption(2935)  
  736. @ClearOption(2940)
  737. @ClearOption(2950)
  738. @ClearOption(2953)  
  739. @ClearOption(2955)  
  740. @ClearOption(2960)
  741. @ClearOption(2965)
  742. @ClearOption(2970) 
  743.  @EnableF1(0)
  744.  @GetOption
  745.  @Cls
  746.     
  747.  
  748.  
  749.  
  750.  
  751.  
  752.  
  753.  
  754.  
  755.  
  756.  
  757.  
  758.  
  759.   @Option 2910 = "List of Features, Fonts, and Resolutions"
  760.   @Option 2920 = "Screen Layout and Graphics Flip Screen"
  761.   @Option 2925 = "Display List Configuration"
  762.   @Option 2930 = "Birds-Eye View" 
  763.   @Option 2933 = "Birds-Eye Icons"
  764.   @Option 2935 = "Edge Pan, Page Alarm"
  765.   @Option 2940 = "Erase Buffer and Band-Free Rendering" 
  766.   @Option 2950 = "P9000 VLB Driver Commands Part 1"
  767.   @Option 2953 = "P9000 VLB Driver Commands Part 2"
  768.   @Option 2955 = "P9000 VLB Quick Reference Driver Commands"
  769.   @Option 2960 = "Custom Menu Design"
  770.   @Option 2965 = "AutoCAD Performance Tuning"
  771.   @Option 2970 = "Known Bug List and Upgrade Information"
  772.  
  773.  
  774.  
  775.   @EndOption
  776.  
  777.  
  778.  @If (@Esc)
  779.      @Goto MenuCADsys
  780. @ElseIf (2910 [=@Option)
  781.      @Help ("@ExePath\\install.hlp", "HelpFeatures", "EndFeatures")
  782. @ElseIf (2920 [=@Option)
  783.      @Help ("@ExePath\\install.hlp", "HelpLayout", "EndLayout")
  784. @ElseIf (2925 [=@Option)
  785.      @Help ("@ExePath\\install.hlp", "HelpDLC", "EndDLC")
  786. @ElseIf (2930 [=@Option)
  787.      @Help ("@ExePath\\install.hlp", "HelpBird", "EndBird")
  788. @ElseIf (2933 [=@Option)
  789.      @Help ("@ExePath\\install.hlp", "HelpIcon", "EndIcon")
  790. @ElseIf (2935 [=@Option)
  791.      @Help ("@ExePath\\install.hlp", "HelpPan", "EndPan")
  792. @ElseIf (2940 [=@Option)
  793.      @Help ("@ExePath\\install.hlp", "HelpBand", "EndBand")
  794. @ElseIf (2950 [=@Option)
  795.      @Help ("@ExePath\\install.hlp", "HelpCommands", "EndCommands")
  796. @ElseIf (2953 [=@Option)
  797.      @Help ("@ExePath\\install.hlp", "HelpComtwo", "EndComtwo")
  798. @ElseIf (2955 [=@Option)
  799.      @Help ("@ExePath\\install.hlp", "HelpComquick", "EndComquick")
  800. @ElseIf (2960 [=@Option)
  801.      @Help ("@ExePath\\install.hlp", "HelpCMD", "EndCMD")
  802. @ElseIf (2965 [=@Option)
  803.      @Help ("@ExePath\\install.hlp", "HelpTuning", "EndTuning")
  804. @ElseIf (2970 [=@Option)
  805.      @Help ("@ExePath\\install.hlp", "HelpBug", "EndBug")
  806.  
  807. @endif
  808. @Goto MenuADI42
  809.  
  810.  
  811.  
  812. /*---------------------- Handle AutoCAD Help Menu -------------------------*/
  813. MenuACADHelp:
  814.  
  815. @If (2105 [= @Option)
  816.  @Help ("@ExePath\\install.hlp", "HelpADI42", "EndADI42")
  817. @ElseIf (2120 [= @Option)
  818.  @Help ("@ExePath\\install.hlp", "Help3DS", "End3DS")
  819. @Elseif (2125 [= @Option)
  820.  @Help ("@ExePath\\install.hlp", "HelpShade", "EndShade")
  821. @Elseif (2130 [= @Option)
  822.  @Help ("@ExePath\\install.hlp", "HelpACAD11", "EndACAD11")
  823. @Elseif (2145 [= @Option)
  824.  @Help ("@ExePath\\install.hlp", "HelpACAD12", "EndACAD12")
  825. @EndIf   
  826.  
  827. @Goto MenuCADsys
  828.  
  829. /*---------------- Desktop Publishing Menu (3000) ------------------------*/
  830. MenuDesktop:
  831.  
  832. @ClearOption(3100)
  833. @ClearOption(3200)
  834. @EnableF1(1)
  835. @GetOption
  836. @Cls
  837.  @NameDesk @msgDDI
  838.  @msgPSAA
  839.  @Option 3100 = "@NameVentura"
  840.  @Option 3200 = "@NameGem"
  841. @EndOption
  842.  
  843. @If (@Esc)
  844.  @Goto MenuMain
  845. @Elseif (@KeyF1)
  846.  @Goto MenuDesktopHelp 
  847. @Elseif (3100 [= @Option)
  848.  @Goto MenuVentura
  849. @Else
  850.  @Goto MenuGem
  851. @Endif
  852.  
  853. /*-------------------- Handles Desktop Publishing Help Menu --------------*/
  854. MenuDesktopHelp:
  855.  
  856. @If (3100 [= @Option)
  857.  @Help ("@ExePath\\install.hlp", "HelpVentura", "EndVentura")
  858. @Elseif (3200 [= @Option)
  859.  @Help ("@ExePath\\install.hlp", "HelpGem", "EndGem")
  860. @Endif
  861.  
  862. @Goto MenuDesktop
  863.  
  864. /*-------------- Ventura Publisher Driver Installation (3100) ------------*/
  865. MenuVentura:
  866.  
  867. @EnableF1(0)
  868. @GetOutDrive
  869.  @Suppress A
  870.  @Suppress B
  871.   @Cls
  872.   @NameVentura @msgDDI
  873.   @msgDrive
  874. @EndOutDrive
  875. @If (@Esc) @Goto MenuDesktop @Endif
  876.  
  877. @GetSubdir
  878.  @Default = "\\VENTURA"
  879.  @Cls
  880.  @NameVentura @msgDDI
  881.  @msgDir
  882.  
  883.  
  884. @EndSubdir
  885. @If (@Esc) @Goto MenuVentura @Endif
  886.  
  887. @ClearOption(1)
  888. @ClearOption(2)
  889. @If (@Exists "@OutDrive:\\@SubDir" == 0)
  890.  @EnableF1(0)
  891.  @GetOption @Cls
  892.   @LocalWindow (10,39) 
  893.   @NameVentura @msgDDI
  894.   @OutDrive:@SubDir @msgDDNE
  895.   @msgCont
  896.   @Option 1 = "@Reenter"
  897.   @Option 2 = "@Cont"
  898.  @EndOption
  899. @Endif
  900.  
  901. @If ((@Esc) || (1 [= @Option))
  902.  @Goto MenuVentura
  903. @Endif
  904.  
  905. @DefineDisk
  906.  @Label = "Disk #1"
  907.  @BeginLib P9000.001 
  908.  @F sdwx1k.vga   @O @OutDrive:\@SubDir\*.*
  909.  @F sdwx8x6.vga  @O @OutDrive:\@SubDir\*.*
  910.  @F sdwxvga.vga  @O @OutDrive:\@SubDir\*.*
  911.  @EndLib 
  912. @EndDisk
  913.  
  914.  
  915. @Help ("@ExePath\\install.hlp", "HelpVentura", "EndVentura")
  916. @Goto MenuDesktop
  917.  
  918. /*-------------- Gem Desktop Driver Installation (3200) ------------------*/
  919. MenuGem:
  920.  
  921. @ClearOption(6100) /* 1024x768*/
  922. @ClearOption(6200) /* 800x600 */
  923. @ClearOption(6300) /* 640x480 */
  924.  
  925. @GetOutDrive
  926.  @Suppress A
  927.  @Suppress B
  928.   @Cls
  929.   @NameGem @msgDDI
  930.   @msgDrive
  931. @EndOutDrive
  932. @If (@Esc) @Goto MenuDesktop @Endif
  933.  
  934. @GetSubdir
  935.  @Default = "\\GEMAPPS\\GEMSYS"
  936.  @Cls
  937.  @NameGem @msgDDI
  938.  @msgDir
  939.  
  940.  
  941. @EndSubdir
  942. @If (@Esc) @Goto MenuGem @Endif
  943.  
  944. @ClearOption(1)
  945. @ClearOption(2)
  946. @If ((@Exists "@OutDrive:\\@SubDir") == 0)
  947.  @EnableF1(0)
  948.  @GetOption @Cls
  949.   @LocalWindow (10,39) 
  950.   @NameGem @msgDDI
  951.   @OutDrive:@SubDir @msgDDNE
  952.   @msgCont
  953.   @Option 1 = "@Reenter"
  954.   @Option 2 = "@Cont"
  955.  @EndOption
  956. @Endif
  957.  
  958. @If ((@Esc) || (1 [= @Option))
  959.  @Goto MenuGem
  960. @Endif
  961.  
  962. MenuRes:
  963. @EnableF1(1)
  964.  
  965. @GetOption
  966.  @Cls
  967.  @NameGem Installation:
  968.  @msgPSAA
  969.  @Option 6100 = " 1024x768"
  970.  @Option 6200 = " 800x600"
  971.  @Option 6300 = " 640x480"
  972. @EndOption
  973.  
  974. @If (@Esc)
  975.  @Goto MenuMain
  976. @Elseif (@KeyF1)
  977.  @Help ("@ExePath\\install.hlp","HelpGem","EndGem")
  978.  @Goto MenuRes
  979. @Endif
  980.  
  981.  
  982.  
  983. @Rename ("@OutDrive:\\@SubDir\\sd*.vga","sd*.bak")
  984.  
  985. @DefineDisk
  986.  @Label = "Disk #1"
  987.  @BeginLib P9000.001 
  988.  
  989.  @F sdwx1k.vga   @O @OutDrive:\@SubDir\*.*  @Option 6100
  990.  
  991.  @F sdwx8x6.vga  @O @OutDrive:\@SubDir\*.*  @Option 6200
  992.  
  993.  @F sdwxvga.vga  @O @OutDrive:\@SubDir\*.*  @Option 6300
  994.  
  995.  @EndLib 
  996. @EndDisk
  997.  
  998.  
  999.  
  1000. @Help ("@ExePath\\install.hlp", "HelpGem", "EndGem")
  1001. @Goto MenuMain
  1002.  
  1003.  
  1004. /*--------------- Word Processing Main Menu (5000) -----------------------*/
  1005. MenuWordProcess:
  1006.  
  1007. @ClearOption(5100)
  1008. @ClearOption(5200)
  1009. @EnableF1(1)
  1010. @GetOption
  1011. @Cls
  1012.  @NameWord @msgDDI
  1013.  @msgPSAA
  1014.  @Option 5100 = "@NameWP"
  1015.  @Option 5200 = "@NameMSWord"
  1016. @EndOption
  1017.  
  1018. @If (@Esc)
  1019.  @Goto MenuMain
  1020. @Elseif (@KeyF1)
  1021.  @Goto MenuWordHelp
  1022. @Elseif (5100 [= @Option)
  1023.  @Goto MenuWP
  1024. @Elseif (5200 [= @Option)
  1025.  @Goto MenuMSWord
  1026. @Else
  1027.  @Goto MenuWS
  1028. @Endif
  1029.  
  1030. /*-------------------- Handles Word Processing Menu Help ------------------*/
  1031. MenuWordHelp:
  1032.  
  1033. @If (5100 [= @Option)
  1034.  @Help ("@ExePath\\install.hlp", "HelpWP", "EndWP")
  1035. @Elseif (5200 [= @Option)
  1036.  @Help ("@ExePath\\install.hlp", "HelpMSWord", "EndMSWord")
  1037. @Endif
  1038.  
  1039. @Goto MenuWordProcess
  1040.  
  1041. /*- WordPerfect Driver Installation (5100) -*/
  1042. MenuWP:
  1043.  
  1044. @EnableF1(0)
  1045. @GetOutDrive
  1046.  @Suppress A
  1047.  @Suppress B
  1048.   @Cls
  1049.   @NameWP @msgDDI
  1050.   @msgDrive
  1051. @EndOutDrive
  1052. @If (@Esc) @Goto MenuWordProcess @Endif
  1053.  
  1054. @GetSubdir
  1055.  @Default = "\\WP"
  1056.  @Cls
  1057.  @NameWP @msgDDI
  1058.  @msgDir
  1059.  
  1060.  
  1061. @EndSubdir
  1062. @If (@Esc) @Goto MenuWP @Endif
  1063.  
  1064. @ClearOption(1)
  1065. @ClearOption(2)
  1066. @If ((@Exists "@OutDrive:\\@SubDir") == 0)
  1067.  @EnableF1(0)
  1068.  @GetOption @Cls
  1069.   @LocalWindow (10,39) 
  1070.   @NameWP @msgDDI
  1071.   @OutDrive:@SubDir @msgDDNE
  1072.   @msgCont
  1073.   @Option 1 = "@Reenter"
  1074.   @Option 2 = "@Cont"
  1075.  @EndOption
  1076. @Endif
  1077.  
  1078. @If ((@Esc) || (1 [= @Option))
  1079.  @Goto MenuWP
  1080. @Endif
  1081.  
  1082. @DefineDisk
  1083.  @Label = "Disk #1"
  1084.  @BeginLib P9000.001 
  1085.  @F wxgraph.vrs  @O @OutDrive:\@SubDir\*.* 
  1086.  @F wxtext.vrs   @O @OutDrive:\@SubDir\*.* 
  1087.  @EndLib 
  1088. @EndDisk
  1089.  
  1090. @Help ("@ExePath\\install.hlp", "HelpWP", "EndWP")
  1091. @Goto MenuWordProcess
  1092.  
  1093. /*- Microsoft Word Driver Installation (5200) -*/
  1094. MenuMSWord:
  1095.  
  1096. @EnableF1(0)
  1097. @GetOutDrive
  1098.  @Suppress A
  1099.  @Suppress B
  1100.   @Cls
  1101.   @NameMSWord @msgDDI
  1102.   @msgDrive
  1103. @EndOutDrive
  1104. @If (@Esc) @Goto MenuWordProcess @Endif
  1105.  
  1106. @GetSubdir
  1107.  @Default = "\\WORD"
  1108.  @Cls
  1109.  @NameMSWord @msgDDI
  1110.  @msgDir
  1111.  
  1112.  
  1113. @EndSubdir
  1114. @If (@Esc) @Goto MenuMSWord @Endif
  1115.  
  1116. @ClearOption(1)
  1117. @ClearOption(2)
  1118. @If ((@Exists "@OutDrive:\\@SubDir") == 0)
  1119.  @EnableF1(0)
  1120.  @GetOption @Cls
  1121.   @LocalWindow (10,39) 
  1122.   @NameMSWord @msgDDI
  1123.   @OutDrive:@SubDir @msgDDNE
  1124.   @msgCont
  1125.   @Option 1 = "@Reenter"
  1126.   @Option 2 = "@Cont"
  1127.  @EndOption
  1128. @Endif
  1129.  
  1130. @If ((@Esc) || (1 [= @Option))
  1131.  @Goto MenuMSWord
  1132. @Endif
  1133.  
  1134. @DefineDisk
  1135.  @Label = "Disk #1"
  1136.  @BeginLib P9000.001 
  1137.  @F mouse.com    @O @OutDrive:\@SubDir\*.* 
  1138.  @F wxscreen.vid @O @OutDrive:\@SubDir\*.* 
  1139.  @EndLib 
  1140. @EndDisk
  1141.  
  1142. @Help ("@ExePath\\install.hlp", "HelpMSWord", "EndMSWord")
  1143. @Goto MenuWordProcess
  1144.  
  1145.  
  1146.