Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Filter by SetupType

0 views
Skip to first unread message

Brian Collins

unread,
Nov 19, 2000, 3:00:00 AM11/19/00
to
I am trying to filter by SetupTypeEx. I have the two types displayed
correctly in SetupTypeEx. They come up in the dialog and you can select
one, however, near the end of the install, I am trying to filter some
Reg settings by SetupTypeEx.
I created a String variable, svInstallD and svInstallM and set each one
with the correct type,


SdSetupTypeEx ( "Sprinticket Install Types" ,"Please choose one
installation method" , "" , svSetupTypeEx , 0 );
if(svSetupTypeEx = "Manager's Workstation")then
svInstallM = "Manager's Workstaion";
MessageBox("You have chosen the Manager's Workstation Type
Install",INFORMATION);
endif;

This works fine in the function but I need to use this variable later
the the script in another function. I tried to use the #define
svInstallM "Manager's Workstation"
in the beginning of the install but this didn't work.
Then I tried a BOOL,
if (svSetupTypeEx = "Manager's Workstation")then
bManager = TRUE;

This did not work later in the script either. Help !
Can this be done ?

0 new messages