# Setup Builder generated ProJect file - Do not modify
FILETYPE=BUILDER_PROJECT
FILEVER=315
PROJDIR=C:\SB\INSTALL\
APPNAME=Setup Builder
DEFPATH=C:\SETUP
DIRECTORY1=%InstallPath%
DIRECTORY2=%InstallPath%SAMPLES
DIRECTORY3=%InstallPath%OBJECTS
PROJATTRIBS=1,1,1,1,0
LICENSEINI=BLDR16.INI
DISKLABEL=DISK
COMMENTS=//~~// Setup procedure for installing/de-installing:~~//~~// SETUP / SETUP BUILDER~~//
SETUPFILE=SETUP.SCR
ENCRIPT=0
RESERVE=40
SPLITSIZE=100
SPACEREQD=0
OPTIONALFILES=1,1,0,1,1,1
COMPANY=GPPSoftware
OPTINSTALL1=Install the %Application% software
OPTINSTALL2=Install Sample Objects
OPTINSTALL3=Install General Samples
PMGROUP=0,1,0,1,0,0
GRPCAPFILE=%Application%
LANGUAGE=0
SETUPMSG=Starting %Application% Setup...
CAPTION=Setup
NEXTDISK=Please insert the diskette labelled '$'
WELCOME1=Welcome to the %Application% Installation Program.
WELCOME2=This program will install the %Application% software in the directory you specify on your hard disk.
ABOUT=(Compuserve ID: 100105,536)||Setup is supplied with the Setup Builder|software and is the copyright of G.Plowman
DEINST1=Please make a selection from the following options:
DEINST2=
DEINST3=Un-Install %Application%
DEINST4=The %Application% software is about to be removed from your machine.||All files, directories and the appropriate Program Manager Group will be deleted.||Are you sure you wish to continue ?
DEINST5=De-installation aborted - the %Application% software has not been deinstalled.
DEINST6=The %Application% software has been successfully de-installed.
DEINST7=To re-install the %Application% software you should re-run this installation program.
DEINST8=The %Application% software has not been correctly installed.
DEINST9=The De-installation procedure is unable to de-install the %Application% software.
ASKPATH1=The install program will copy the %Application% files into the following directory:
SPACECHECK1=The %Application% software requires %Required% bytes of disk space and there is only %Space% bytes free on your %InstallDrive% drive.||Do you wish to continue to install the software ?
INUSE1=Setup has found that the file:||$||is already in use by Windows.||Do you wish to overwrite it anyway ?
MAKEGRP=Setup can create a Program Manager group|for the %Application% application.||Do you wish to create a Program|Manager group and icons ?
LICENSE1=Please enter the following licensing information for the %Application% software:
ERROR1=An error occured during installation of the %Application% software.
ERROR2=|The %Application% software has not been fully installed.
QUIT1=Installation has been terminated. You should re-run this installation program at a later time to install %Application%.
QUIT2=|The %Application% software has not been installed.
SUCCESS1=|%Application% installation has been successfully completed.
SUCCESS2=
DIRERROR1=|Failed to create the installation directory '%MakeDir%'.
DIRERROR2=|Unable to install the %Application% software in the specified directory.
BACKDROPRES1=(Default)
BACKDROPRES2=(Default)
BACKDROPRES3=(Default)
BACKDROPRES4=(Default)
BACKDROPRES5=DEFAULTBACKDROP
BITMAP1=C:\SWM\GPSOFT3.BMP
BITMAP2=C:\SB\SAMPLES\DIAMOND.BMP
OBJECT1=C:\SB\OBJECTS\DEFAULT.BKD
OBJECT2=C:\SB\INSTALL\CUECARD1.CUE
OBJECT3=C:\SB\INSTALL\CUECARD2.CUE
OBJECT4=C:\SB\INSTALL\CUECARD3.CUE
OBJECT5=C:\SB\INSTALL\CUECARD4.CUE
OBJECT6=C:\SB\INSTALL\CUECARD5.CUE
OBJECT7=C:\SB\INSTALL\CUECARD6.CUE
USERCODE1=// Find out what is or is not installed so we~~// can prompt the user with what still needs installing~~CheckExists("%InstallPath%*.EXE")~~SET %Option1% = NOT %ERROR%~~~~CheckExists("%InstallPath%SAMPLES\*.*")~~SET %Option2% = NOT %ERROR%~~~~CheckExists("%InstallPath%OBJECTS\*.*")~~SET %Option3% = NOT %ERROR%~~
USERCODE2=// Save the install version~~IF "#INSTVER#" == "INST16" WriteProfileString("Install", "Version", "5.01.000", "%IniFile%")~~IF "#INSTVER#" == "INST16" WriteProfileString("Install", "DefaultBackdrop", "%InstallPath%OBJECTS\DEFAULT.BKD", "%IniFile%")~~IF "#INSTVER#" == "INST32" RegWriteSetting(2, "SOFTWARE\%Company%\%Application%\Install", "Version", "5.01.000")~~IF "#INSTVER#" == "INST32" RegWriteSetting(2, "SOFTWARE\%Company%\%Application%\Install", "DefaultBackdrop", "%InstallPath%OBJECTS\DEFAULT.BKD")~~~~// Make the temporary directory~~MkDir("%WindowsDirectory%TEMP")~~IF "#INSTVER#" == "INST16" WriteProfileString("Install", "TempPath", "%WindowsDirectory%TEMP", "%IniFile%")~~IF "#INSTVER#" == "INST32" RegWriteSetting(2, "SOFTWARE\%Company%\%Application%\Install", "TempPath", "%WindowsDirectory%TEMP")~~~~// Set the copy dialog position for small screens so that~~// the user can see the cue cards~~GetScreenWidth(%Width%)~~IF %Width% <= 800 CentreDialog(2, 2)~~