Functions:
ProjectInit
Starts a new Self extracting project
Must be used as first before using any other functions or properties
ProjectAddFile
Adds a new file to current project
Object.ProjectAddFile DisplayName As String, Filename As String
Object.ProjectAddFile "My first file","C:\MYDATA\MyFirstData.pdb"
Object.ProjectAddFile "My second file","C:\MYDATA\MyRealData.pdb"
ProjectRemoveFile
Removes a file from the current project
Object.ProjectRemoveFile Filename As String
Object.ProjectRemoveFile "C:\MYDATA\MyFirstData.pdb"
Object.ProjectRemoveFile "C:\MYDATA\MyRealData.pdb"
ProjectCreate
Creates the self extracting prc with the files and the other settings from the current project
Object.ProjectCreate OutPutFileName As String
Object.ProjectCreate "C:\MYDATA\MyFirstInstall.prc"
Properties:
ProjectFileCount
Returns the count of the files included in the current project
SettingsSmallicon
Sets the filename of the bmp file (size 15*9 ) for using as the small Icon of the creating prc.
Object.SettingsSmallicon="C.\Data\MySmallIcon.bmp"
SettingsGetSmallIconPicture
Returns the bitmap of the small Icon of the creating prc.
Only if set before using SettingsSmallicon
Picture1=Object.SettingsGetSmallIconPicture
SettingsLargeicon
Sets the filename of the bmp file (size 22*22 ) for using as the Large Icon of the creating prc.
Object.SettingsLargeicon="C.\Data\MyLargeIcon.bmp"
SettingsGetLargeIconPicture
Returns the bitmap of the Large Icon of the creating prc.
Only if set before using SettingsLargeicon
Picture1=Object.SettingsGetLargeIconPicture
SettingsPicture
Sets the filename of the bmp file (size 64*64 ) for using as the Logo Picture of the creating prc.
Object.SettingsPicture="C.\Data\MySetupLogo.bmp"
SettingsGetPicture
Returns the bitmap of the Logo Picture of the creating prc.
Only if set before using SettingsPicture
Picture1=Object.SettingsGetPicture
SettingsInfoLine
Sets the bottom infoline of the created prc.
Object.SettingsInfoLine="Please wait"
SettingsKeepInstaller
Keeps the Installer intact after Launching if set to true
Delets the Installer after Launching if set to False
Object.SettingsKeepInstaller=True
SettingsLaunchAfter
Sets the Creator Id of the app. to launch after Installing
Object.SettingsLaunchAfter="lnch"