Sheritlw
09-27-2004, 06:02 PM
I have 3 packages that only get installed if selected. I created 3 Select Install Folder screens, 1 for each package. I have put the following code into the next action of the Select Packages screen and similiar code in the next action portion of the Install Folder screens and get the error "Argument 1 must be of type string" when I click Next. HELP!!
if (SetupData.GetPackageProperties(UserSetup)) then
Screen.Next();
else
if (SetupData.GetPackageProperties(DatabaseSetup)) then
Screen.Jump(InstallDataFiles);
else
if (SetupData.GetPackageProperties(Utilities)) then
Screen.Jump(InstallUtilities);
else
Screen.End();
end
end
end
if (SetupData.GetPackageProperties(UserSetup)) then
Screen.Next();
else
if (SetupData.GetPackageProperties(DatabaseSetup)) then
Screen.Jump(InstallDataFiles);
else
if (SetupData.GetPackageProperties(Utilities)) then
Screen.Jump(InstallUtilities);
else
Screen.End();
end
end
end