home *** CD-ROM | disk | FTP | other *** search
/ Boot Disc 6 / boot-disc-1997-02.iso / ifftrial / install.inf < prev    next >
INI File  |  1996-09-03  |  20KB  |  848 lines

  1. ;******************************************************************************
  2. ;* Internet FastFind 1.0 installation script - Trial Edition                  *
  3. ;******************************************************************************
  4.  
  5. ; Script Switch Numbers
  6.  
  7. ;  SWITCH_IS_NT40                             01
  8. ;  SWITCH_IS_WIN95                            02
  9.  
  10. ;  SWITCH_PRODUCT_EXISTS                      08
  11.  
  12. ;  SWITCH_CUSTOM_INSTALL                      09
  13.  
  14. ;  SWITCH_RESTORE_DEFAULTS                    11
  15.  
  16. ;  SWITCH_SELECTED_NIC                        20
  17. ;  SWITCH_SELECTED_WEBFIND                    21
  18. ;  SWITCH_SELECTED_NOTIFY                     22
  19. ;  SWITCH_SELECTED_FTP                        23
  20. ;  SWITCH_SELECTED_ZIP                        24
  21. ;  SWITCH_SELECTED_WEBLAUNCH                  25
  22. ;  SWITCH_SELECTED_PATCHCONNECT               26
  23. ;  SWITCH_SELECTED_NETFILEFIND                27
  24.  
  25. ;  SWITCH_PREVIOUS                            50
  26. ;  SWITCH_NEXT                                51
  27. ;  SWITCH_CANCEL                              52
  28.  
  29. ;  SWITCH_EXIT_CONTINUE                       96
  30. ;  SWITCH_EXIT_RESTART                        97
  31. ;  SWITCH_EXIT_REBOOT                         98
  32.  
  33. [InstallVersion]
  34. 4.0
  35.  
  36. [process]
  37. EnableForceWrite()
  38. EnableOverwrite()
  39. EnableWin95Shell()
  40. Enable256Advos()
  41. SaveRegistry(SaveRegGroup)
  42. SetActiveCopy(MainCopy, install.inf)
  43. Backup(CustDLLCopy)
  44. Backup(SettingsDLLCopy)
  45. ;Bitmaps(Bitmaps)
  46. DisableHelp()
  47. CallProc(InitCustomDLL)
  48.  
  49. #ifnot(switch01)
  50.    #ifnot(switch02)
  51.       MessageBox(MB_IncorrectWinVer)
  52.       switch97=FALSE
  53.       Exit()
  54.    #endif
  55. #endif
  56.  
  57. #if(switch01)
  58.    switch53=CallProcEx(bIsAdmin)
  59.    #ifnot(switch53)
  60.       CallProc(MB_NeedAdminToInstall)
  61.       goto(Exit)
  62.    #endif
  63. #endif
  64.  
  65. switch53=CallProcEx(bIsExpired)
  66. #if(switch53)
  67.    Exit()
  68. #endif
  69.  
  70. CallProc(DelWinInit)
  71.  
  72. switch20=TRUE
  73. switch21=TRUE
  74. switch22=TRUE
  75. switch23=TRUE
  76. switch24=TRUE
  77. switch25=TRUE
  78. switch26=TRUE
  79. switch27=TRUE
  80.  
  81. CallProc(KillRunningTasks)
  82.  
  83. CallProc(CheckForExistingProduct)
  84.  
  85. CallProc(SetDefaultProductDirectory)
  86.  
  87. WizardPanel(WizWelcome, siwifftr.dll)
  88. WizardProcessPanel()
  89.  
  90. WizardPanel(WizLicense, siwifftr.dll)
  91. WizardProcessPanel()
  92.  
  93. #if(switch20)
  94.    SelectOption(NIC)
  95. #else
  96.    DeselectOption(NIC)
  97. #endif
  98.  
  99. #if(switch21)
  100.    SelectOption(WebFind)
  101. #else
  102.    DeselectOption(WebFind)
  103. #endif
  104.  
  105. #if(switch22)
  106.    SelectOption(Notify)
  107. #else
  108.    DeselectOption(Notify)
  109. #endif
  110.  
  111. #if(switch23)
  112.    SelectOption(FTP)
  113. #else
  114.    DeselectOption(FTP)
  115. #endif
  116.  
  117. #if(switch24)
  118.    SelectOption(Zip)
  119. #else
  120.    DeselectOption(Zip)
  121. #endif
  122.  
  123. #if(switch25)
  124.    SelectOption(WebLaunch)
  125. #else
  126.    DeselectOption(WebLaunch)
  127. #endif
  128.  
  129. #if(switch26)
  130.    SelectOption(PatchConnect)
  131. #else
  132.    DeselectOption(PatchConnect)
  133. #endif
  134.  
  135. #if(switch27)
  136.    SelectOption(NetFileFind)
  137. #else
  138.    DeselectOption(NetFileFind)
  139. #endif
  140.  
  141. SelectOption(RequiredFiles)
  142.  
  143. WizardPanel(WizSelectLocation, siwifftr.dll)
  144. WizardProcessPanel()
  145.  
  146. WizardIncludePanel(WizKeepSettings)
  147. WizardPanel(WizKeepSettings, siwifftr.dll)
  148. #if(switch08)
  149.    WizardProcessPanel()
  150. #else
  151.    WizardExcludePanel(WizKeepSettings)
  152. #endif
  153.  
  154. ;WizardIncludePanel(WizNoDiskSpace)
  155. ;WizardPanel(WizNoDiskSpace, siwifftr.dll)
  156. ;switch53=CallProcEx(bIsSufficientDiskSpace)
  157. ;#ifnot(switch53)
  158. ;   WizardProcessPanel()
  159. ;#else
  160. ;   WizardExcludePanel(WizNoDiskSpace)
  161. ;#endif
  162.  
  163. WizardPanel(WizSetupReview, siwifftr.dll)
  164. WizardProcessPanel()
  165.  
  166. #ifnot(switch08)
  167.    switch11=TRUE
  168. #endif
  169.  
  170. #if(switch11)
  171.    switch53=IsOptionSelected(NIC)
  172.    #if(switch53)
  173.       CallProc(RemoveSettingsNIC)
  174.    #endif
  175.  
  176.    switch53=IsOptionSelected(Notify)
  177.    #if(switch53)
  178.       CallProc(RemoveSettingsNotify)
  179.    #endif
  180.  
  181.    switch53=IsOptionSelected(WebFind)
  182.    #if(switch53)
  183.       CallProc(RemoveSettingsWebFind)
  184.    #endif
  185.  
  186.    switch53=IsOptionSelected(FTP)
  187.    #if(switch53)
  188.       CallProc(RemoveSettingsFTP)
  189.    #endif
  190.  
  191.    switch53=IsOptionSelected(Zip)
  192.    #if(switch53)
  193.       CallProc(RemoveSettingsZip)
  194.    #endif
  195.  
  196.    switch53=IsOptionSelected(WebLaunch)
  197.    #if(switch53)
  198.       CallProc(RemoveSettingsWebLaunch)
  199.    #endif
  200.  
  201.    switch53=IsOptionSelected(NetFileFind)
  202.    #if(switch53)
  203.       CallProc(RemoveSettingsNetFileFind)
  204.    #endif
  205.  
  206.    switch53=IsOptionSelected(PatchConnect)
  207.    #if(switch53)
  208.       CallProc(RemoveSettingsPatchConnect)
  209.    #endif
  210.  
  211.    #ifnot(switch09)
  212.       CallProc(DeleteSettings)
  213.    #endif
  214. #endif
  215.  
  216. switch53=CallProcEx(CreateInstallDirs)
  217. #ifnot(switch53)
  218.    MessageBox(MB_UnableToCreateInstallDirs)
  219.    switch97=FALSE
  220.    goto(Exit)
  221. #endif
  222.  
  223. ;switch53=CallProcEx(bIsDiskOne)
  224. ;#ifnot(switch53)
  225. ;   Exit()
  226. ;#endif
  227.  
  228. Copy()
  229.  
  230. CallProc(HourglassOn)
  231.  
  232. CallProc(RegisterProductInfo)
  233.  
  234. switch53=CallProcEx(bWinInetNewer)
  235. #if(switch53)
  236.    CallProc(InstallWinInet)
  237. #endif
  238.  
  239. switch53=IsOptionSelected(NIC)
  240. #if(switch53)
  241.    CallProc(AddSettingsNIC)
  242. #endif
  243.    
  244. switch53=IsOptionSelected(WebFind)
  245. #if(switch53)
  246.    CallProc(AddSettingsWebFind)
  247.    #if(switch11)
  248.       CallProc(DefaultSettingsWebFind)
  249.    #endif
  250. #endif
  251.    
  252. switch53=IsOptionSelected(Notify)
  253. #if(switch53)
  254.    CallProc(AddSettingsNotify)
  255.    #if(switch11)
  256.       CallProc(DefaultSettingsNotify)
  257.    #endif
  258. #endif
  259.    
  260. switch53=IsOptionSelected(FTP)
  261. #if(switch53)
  262.    CallProc(AddSettingsFTP)
  263.    #if(switch11)
  264.       CallProc(DefaultSettingsFTP)
  265.       CallProc(MergeFTPSites)
  266.    #endif
  267. #endif
  268.  
  269. switch53=IsOptionSelected(Zip)
  270. #if(switch53)
  271.    CallProc(AddSettingsZip)
  272.    #if(switch11)
  273.       CallProc(DefaultSettingsZip)
  274.    #endif
  275. #endif
  276.  
  277. switch53=IsOptionSelected(WebLaunch)
  278. #if(switch53)
  279.    CallProc(AddSettingsWebLaunch)
  280.    #if(switch11)
  281.       CallProc(DefaultSettingsWebLaunch)
  282.    #endif
  283. #endif
  284.  
  285. switch53=IsOptionSelected(NetFileFind)
  286. #if(switch53)
  287.    CallProc(AddSettingsNetFileFind)
  288.    #if(switch11)
  289.       CallProc(DefaultSettingsNetFileFind)
  290.    #endif
  291. #endif
  292.  
  293. switch53=IsOptionSelected(PatchConnect)
  294. #if(switch53)
  295.    CallProc(AddSettingsPatchConnect)
  296. #endif
  297.  
  298. CallProc(HourglassOff)
  299.  
  300. Groups(MainGroup)
  301.  
  302. ResetTarget(SetTargetToTarget1)
  303.  
  304. WizardPanel(WizHowToReach, siwifftr.dll)
  305. WizardProcessPanel()
  306.  
  307. Delete(DelWintDist)
  308.  
  309. #if(switch02)
  310.    switch96=FALSE
  311.    switch97=TRUE
  312.    switch98=FALSE
  313. #else
  314.    switch96=FALSE
  315.    switch97=FALSE
  316.    switch98=TRUE
  317. #endif
  318.  
  319. WizardPanel(WizFinish, siwifftr.dll)
  320. WizardProcessPanel()
  321.  
  322. :Exit
  323. #if(switch97)
  324.    switch53=CallProcEx(bRestartWindows)
  325.    #if(switch53)
  326.       ExitRestart()
  327.    #else
  328.       Exit()
  329.    #endif
  330. #endif
  331.  
  332. #if(switch98)
  333.    switch53=CallProcEx(bRebootSystem)
  334.    #if(switch53)
  335.       RebootNT()
  336.    #else
  337.       Exit()
  338.    #endif
  339. #endif
  340.  
  341. Exit()
  342.  
  343. ;###########################################################################
  344. ;###########################################################################
  345.  
  346. ;***************************************************************************
  347. ;* SubProc Executed When Install Takes Over As Shell
  348. ;***************************************************************************
  349.  
  350. [subproc]
  351. Backup(CustDLLCopy)            ; Copy custom dll to windows dir
  352. Backup(SettingsDLLCopy)
  353. Return()
  354.  
  355.  
  356. ;***************************************************************************
  357. ;* Dialog Info                                                             *
  358. ;***************************************************************************
  359.  
  360. [MainCopy:CopyDialog]
  361. caption = "Copying files..."
  362. posx = -1
  363. posy = -20
  364.  
  365. [MainCopy:Primary]
  366. caption = "Select Components"
  367. button1 = "Select..."
  368. button2 = "Select..."
  369. button3 = "Select..."
  370. button4 = "Select..."
  371. button5 = "Select..."
  372. text = PrimaryText
  373.  
  374. [PrimaryText]
  375. "Please select the items you want to install.  If a selection"
  376. "has a button to the right, you can select individual files or"
  377. "components."
  378.  
  379. ;***************************************************************************
  380. ;* Message Text                                                            *
  381. ;***************************************************************************
  382.  
  383. [cancel]
  384. caption = "Exit Install?"
  385. text    = "Are you sure that you want to exit?"
  386.  
  387. [cancelshell]
  388. caption = "Exit Install?"
  389. "You have chosen to cancel the Install"
  390. "program. In order to reset the Windows"
  391. "environment, Install will also restart"
  392. "Windows. Are you sure you want to exit?"
  393.  
  394. [FileCopy]
  395. copycaption             = "Installing Files"
  396. errorcaption    = "Error Copying Files"
  397. insertcaption   = "Insert Diskette"
  398. Message                 = MessageText
  399.  
  400. [NotImplemented]
  401. caption = "Feature Not Implemented"
  402. "This feature has not yet been implemented."
  403.  
  404. [MB_IncorrectWinVer]
  405. caption = "Incorrect Windows Version"
  406. "Internet FastFind 1.0 requires Windows 95 or Windows NT 4.0 or later.  Setup is unable to proceed."
  407.  
  408. ;KLUDGE - Remove when support added
  409. [MB_CustomInstallNotSupported]
  410. caption="Internet FastFind Setup"
  411. "Custom installation is not yet supported.  A full install will be performed."
  412. ;END KLUDGE
  413.  
  414. [MB_UnableToCreateInstallDirs]
  415. caption="Fatal Error"
  416. "Cannot create target directories.  Setup is unable to proceed."
  417.  
  418. ;***************************************************************************
  419. ;* File Exist verifications                                                *
  420. ;***************************************************************************
  421.  
  422. ;***************************************************************************
  423. ;* Delete Files                                                            *
  424. ;***************************************************************************
  425.  
  426. [DelWintDist]
  427. wintdist.exe, TARGET1
  428.  
  429. ;***************************************************************************
  430. ;* External function calls (DLL)                                           *
  431. ;***************************************************************************
  432.  
  433. [InitCustomDLL]
  434. dll = siwifftr.dll
  435. function = InitCustomDLL
  436.  
  437. [ExitHookProc]
  438. dll = siwifftr.dll
  439. function = ReleaseCustomDLL
  440.  
  441. [TestFunction]
  442. dll=siwifftr.dll
  443. function=TestFunction
  444.  
  445. [CheckForExistingProduct]
  446. dll=siwifftr.dll
  447. function=CheckForExistingProduct
  448.  
  449. [SetDefaultProductDirectory]
  450. dll=siwifftr.dll
  451. function=SetDefaultProductDirectory
  452.  
  453. [CreateInstallDirs]
  454. dll=siwifftr.dll
  455. function=CreateInstallDirs
  456.  
  457. [RegisterProductInfo]
  458. dll=siwifftr.dll
  459. function=RegisterProductInfo
  460.  
  461. [KillRunningTasks]
  462. dll=siwifftr.dll
  463. function=KillRunningTasks
  464.  
  465. [HourglassOn]
  466. dll=siwifftr.dll
  467. function=HourglassOn
  468.  
  469. [HourglassOff]
  470. dll=siwifftr.dll
  471. function=HourglassOff
  472.  
  473. [NukeV1]
  474. dll=siwifftr.dll
  475. function=NukeV1
  476.  
  477. [SetUninstallFlags]
  478. dll=siwifftr.dll
  479. function=SetUninstallFlags
  480.  
  481. [RemoveUninstallFlags]
  482. dll=siwifftr.dll
  483. function=RemoveUninstallFlags
  484.  
  485. [DeleteSettings]
  486. dll=siwifftr.dll
  487. function=DeleteSettings
  488.  
  489. [bIsDiskOne]
  490. dll=siwifftr.dll
  491. function=bIsDiskOne
  492.  
  493. [AddSettingsNIC]
  494. dll=siwifftr.dll
  495. function=AddSettingsNIC
  496.  
  497. [RemoveSettingsNIC]
  498. dll=siwifftr.dll
  499. function=RemoveSettingsNIC
  500.  
  501. [AddSettingsWebFind]
  502. dll=siwifftr.dll
  503. function=AddSettingsWebFind
  504.  
  505. [RemoveSettingsWebFind]
  506. dll=siwifftr.dll
  507. function=RemoveSettingsWebFind
  508.  
  509. [AddSettingsNotify]
  510. dll=siwifftr.dll
  511. function=AddSettingsNotify
  512.  
  513. [RemoveSettingsNotify]
  514. dll=siwifftr.dll
  515. function=RemoveSettingsNotify
  516.  
  517. [AddSettingsFTP]
  518. dll=siwifftr.dll
  519. function=AddSettingsFTP
  520.  
  521. [RemoveSettingsFTP]
  522. dll=siwifftr.dll
  523. function=RemoveSettingsFTP
  524.  
  525. [AddSettingsZip]
  526. dll=siwifftr.dll
  527. function=AddSettingsZip
  528.  
  529. [RemoveSettingsZip]
  530. dll=siwifftr.dll
  531. function=RemoveSettingsZip
  532.  
  533. [AddSettingsWebLaunch]
  534. dll=siwifftr.dll
  535. function=AddSettingsWebLaunch
  536.  
  537. [RemoveSettingsWebLaunch]
  538. dll=siwifftr.dll
  539. function=RemoveSettingsWebLaunch
  540.  
  541. [DefaultSettingsExplorerExtensions]
  542. dll=siwifftr.dll
  543. function=DefaultSettingsExplorerExtensions
  544.  
  545. [InstallWinInet]
  546. dll=siwifftr.dll
  547. function=InstallWinInet
  548.  
  549. [MergeFTPSites]
  550. dll=siwifftr.dll
  551. function=MergeFTPSites
  552.  
  553. [AddSettingsNetFileFind]
  554. dll=siwifftr.dll
  555. function=AddSettingsNetFileFind
  556.  
  557. [RemoveSettingsNetFileFind]
  558. dll=siwifftr.dll
  559. function=RemoveSettingsNetFileFind
  560.  
  561. [AddSettingsPatchConnect]
  562. dll=siwifftr.dll
  563. function=AddSettingsPatchConnect
  564.  
  565. [RemoveSettingsPatchConnect]
  566. dll=siwifftr.dll
  567. function=RemoveSettingsPatchConnect
  568.  
  569. [RefreshDesktop]
  570. dll=siwifftr.dll
  571. function=RefreshDesktop
  572.  
  573. [bRestartWindows]
  574. dll=siwifftr.dll
  575. function=bRestartWindows
  576.  
  577. [bRebootSystem]
  578. dll=siwifftr.dll
  579. function=bRebootSystem
  580.  
  581. [DefaultSettingsWebFind]
  582. dll=siwifftr.dll
  583. function=DefaultSettingsWebFind
  584.  
  585. [DefaultSettingsNotify]
  586. dll=siwifftr.dll
  587. function=DefaultSettingsNotify
  588.  
  589. [DefaultSettingsFTP]
  590. dll=siwifftr.dll
  591. function=DefaultSettingsFTP
  592.  
  593. [DefaultSettingsZip]
  594. dll=siwifftr.dll
  595. function=DefaultSettingsZip
  596.  
  597. [DefaultSettingsWebLaunch]
  598. dll=siwifftr.dll
  599. function=DefaultSettingsWebLaunch
  600.  
  601. [DefaultSettingsNetFileFind]
  602. dll=siwifftr.dll
  603. function=DefaultSettingsNetFileFind
  604.  
  605. [StartWebLaunch]
  606. dll=siwifftr.dll
  607. function=StartWebLaunch
  608.  
  609. [StartNotify]
  610. dll=siwifftr.dll
  611. function=StartNotify
  612.  
  613. [DelWinInit]
  614. dll=siwifftr.dll
  615. function=DelWinInit
  616.  
  617. [bIsAdmin]
  618. dll=siwifftr.dll
  619. function=bIsAdmin
  620.  
  621. [MB_NeedAdminToInstall]
  622. dll=siwifftr.dll
  623. function=MB_NeedAdminToInstall
  624.  
  625. [bWinInetNewer]
  626. dll=siwifftr.dll
  627. function=bWinInetNewer
  628.  
  629. [bIsSufficientDiskSpace]
  630. dll=siwifftr.dll
  631. function=bIsSufficientDiskSpace
  632.  
  633. [bIsExpired]
  634. dll=siwifftr.dll
  635. function=bIsExpired
  636.  
  637. ;***************************************************************************
  638. ;* Misc install functions                                                  *
  639. ;***************************************************************************
  640.  
  641. [Bitmaps]
  642. color = %s\symantec.rle, -1, -1
  643.  
  644. [MainCopy:Advo]
  645. posx = 20
  646. posy = 20
  647. location = siwifftr.dll
  648. count = 1
  649. BitmapsOnly=1
  650.  
  651. [SaveRegGroup]
  652. WINDOWS, system.iff, user.iff
  653.  
  654. ;***************************************************************************
  655. ;* Set Directories                                                         *
  656. ;***************************************************************************
  657.  
  658. [CrDirTarget]
  659. %s, TARGET1
  660.  
  661. [SetTargetToTarget1]
  662. reset = TARGET
  663. location = %s, TARGET1
  664.  
  665.  
  666. ;***************************************************************************
  667. ;* File backup                                                             *
  668. ;***************************************************************************
  669.  
  670. [CustDLLCopy]
  671. siwifftr.dll, siwifftr.dll, SOURCE, TEMPDIR
  672.  
  673. [SettingsDLLCopy]
  674. settings.dll, settings.dll, SOURCE, TEMPDIR
  675.  
  676. ;***************************************************************************
  677. ;* Autoexec Mods                                                           *
  678. ;***************************************************************************
  679.  
  680. ;***************************************************************************
  681. ;* SetShell section                                                        *
  682. ;***************************************************************************
  683.  
  684. [SetShell]
  685. WinIniName = win.ini
  686. SystemIniName = system.ini
  687. Message = MessageBox.SetShellMessage
  688. SysSectionName = boot
  689. WinSectionName = windows
  690. shell = %s\setup.exe
  691. load =
  692. run =
  693. SetShellIfLoaded=
  694. Backup = Backup.SetShellSave
  695. Restore = Backup.SetShellRestore
  696. Active=no
  697. IfActiveList=LoadedList
  698. SubProcess=SubProc
  699.  
  700. [SetShellSave]
  701. win.ini, win.siw, WINDOWS, WINDOWS
  702. system.ini, system.siw, WINDOWS, WINDOWS
  703.  
  704. [SetShellRestore]
  705. system.siw, system.ini, WINDOWS, WINDOWS
  706. win.siw, win.ini, WINDOWS, WINDOWS
  707.  
  708. [_LoadedList]
  709.  
  710. [SetShellMessage]
  711. caption  =  "Internet FastFind Setup"
  712. "Welcome to Internet FastFind Setup.  Please select OK to allow Setup to restart Windows and continue the installation.  Press Cancel to exit Setup."
  713.  
  714.  
  715. ;***************************************************************************
  716. ;* Groups                                                                  *
  717. ;***************************************************************************
  718.  
  719. [MainGroup]
  720. "Internet FastFind", nn.grp
  721.  
  722. [Internet FastFind]
  723. "WebFind",                          webfind.exe,   WebFind,,TARGET1,,,,TARGET1
  724. "Internet FastFind",                iff.exe,       NIC,,TARGET1,,,,TARGET1
  725. "Notify",                           notify.exe,    Notify,,TARGET1,,,,TARGET1
  726. "PatchConnect",                     pconnect.exe,  PatchConnect,,TARGET1,,,,TARGET1
  727. "NetFileFind",                      netff.exe,     NetFileFind,,TARGET1,,,,TARGET1
  728. "Internet FastFind Release Notes",  readme.txt,    RequiredFiles,,TARGET1,,,,TARGET1
  729.  
  730. ;***************************************************************************
  731. ;* Copy                                                                    *
  732. ;***************************************************************************
  733.  
  734. [MainCopy]
  735. ;SelectionType.ComponentName,    "SelectionDlgText",               Size,    Required?,<Files>?,ShowItem?
  736.  
  737. CopyMain.RequiredFiles,          "Required Files - %ldK",            0,       Y,          N,          Y
  738. CopyMain.NIC,                    "Internet FastFind - %ldK",         0,       N,          N,          Y
  739. CopyMain.WebFind,                "WebFind - %ldK",                   0,       N,          N,          Y
  740. CopyMain.Notify,                 "Notify - %ldK",                    0,       N,          N,          Y
  741. CopyMain.FTP,                    "EasyFTP - %ldK",                   0,       N,          N,          Y
  742. CopyMain.Zip,                    "EasyZIP - %ldK",                   0,       N,          N,          Y
  743. CopyMain.WebLaunch,              "WebLaunch - % ldK",                0,       N,          N,          Y
  744. CopyMain.PatchConnect,           "PatchConnect - % ldK",             0,       N,          N,          Y
  745. CopyMain.NetFileFind,            "NetFileFind - % ldK",              0,       N,          N,          Y
  746.  
  747. ;***************************************************************************
  748. ;* Wizard Panels                                                           *
  749. ;***************************************************************************
  750.  
  751. [WizWelcome]
  752. Caption="Internet FastFind Setup"
  753. Title="Welcome"
  754. DlgProc=_WelcomeDlgProc@16
  755. ResourceID=501
  756. Bitmap16=900
  757. PanelDataProc=_WelcomeDataProc@0
  758. PanelFlags=First
  759.  
  760. [WizLicense]
  761. Caption="Internet FastFind Setup"
  762. DlgProc=_LicenseDlgProc@16
  763. PanelDataProc=_LicenseDataProc@0
  764. ResourceId=502
  765.  
  766. [WizSelectLocation]
  767. Caption="Internet FastFind Setup"
  768. Title="Program Location"
  769. DlgProc=SIW_ProductDlgProc
  770. ResourceId=1000
  771. Bitmap16=903
  772. PanelDataProc=DefaultDataProc
  773.  
  774. [WizSetupReview]
  775. Caption="Internet FastFind Setup"
  776. Title="Setup Review"
  777. DlgProc=SIW_ProductDlgProc
  778. ResourceId=1001
  779. Bitmap16=900
  780. PanelDataProc=DefaultDataProc
  781.  
  782. [WizHowToReach]
  783. Caption="Internet FastFind Setup"
  784. Title="How to Reach Us"
  785. DlgProc=_ReachDlgProc@16
  786. ResourceId=513
  787. Bitmap16=213
  788. PanelFlags=First
  789.  
  790. [WizFinish]
  791. Caption="Internet FastFind Setup"
  792. Title="Installation Complete"
  793. DlgProc=SIW_ProductDlgProc
  794. ResourceId=1003
  795. ;Bitmap16=906
  796. Bitmap16=900
  797. PanelDataProc=DefaultDataProc
  798. PanelFlags=last+finish
  799.  
  800. [WizKeepSettings]
  801. Caption="Internet FastFind Setup"
  802. Title="Keep Current Settings?"
  803. DlgProc=SIW_ProductDlgProc
  804. ResourceId=1010
  805. Bitmap16=900
  806. PanelDataProc=DefaultDataProc
  807.  
  808. [WizRegisterNow]
  809. Caption="Internet FastFind Setup"
  810. Title="Register Now"
  811. DlgProc=_RegNowDlgProc@16
  812. PanelDataProc=_RegNowDataProc@0
  813. ResourceId=504
  814. Bitmap16=204
  815. PanelFlags=first+Skip
  816.  
  817. [WizRegisterPersonal]
  818. Caption="Internet FastFind Setup"
  819. DlgProc=_UsaRegDlgProc@16
  820. PanelDataProc=_UsaRegDataProc@0
  821. ResourceId=505
  822. PanelFlags=Skip
  823.  
  824. [WizRegisterMarketing]
  825. Caption="Internet FastFind Setup"
  826. DlgProc=_MarketingDlgProc@16
  827. PanelDataProc=_MarketingDataProc@0
  828. ResourceId=506
  829. PanelFlags=Skip
  830.  
  831. [WizRegisterDecide]
  832. Caption="Internet FastFind Setup"
  833. Title="Send Us Your Form"
  834. DlgProc=_SendRegDlgProc@16
  835. PanelDataProc=_SendRegDataProc@0
  836. ResourceId=514
  837. Bitmap16=214
  838. PanelFlags=Skip
  839.  
  840. [WizNoDiskSpace]
  841. Caption="Internet FastFind Setup"
  842. Title="Insufficient Disk Space"
  843. DlgProc=SIW_ProductDlgProc
  844. ResourceId=1011
  845. Bitmap16=900
  846. PanelDataProc=DefaultDataProc
  847.  
  848.