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

Help me!!!!

3 views
Skip to first unread message

Visual Basic

unread,
Jul 13, 2000, 3:00:00 AM7/13/00
to

How could I do for change the descriptions "TYPICAL," "CUSTOM" in a
"SetupType"?
How do you/he/she/it be used the "SDSETUPTYPE"?
(In Italiano sarebbe meglio)
thanks

Anthony Zakgaim

unread,
Jul 13, 2000, 3:00:00 AM7/13/00
to
If I understood you right...
Right-click on "Typical" (or whatever type you have) and select Rename from
popup menu.

"Visual Basic" <S_C...@Hotmail.com> wrote in message
news:396de...@208.30.171.38...

bob

unread,
Aug 17, 2000, 3:00:00 AM8/17/00
to
Hi - you will also have to use SdOptionsButtons instead of SdSetupType. Check
the help file on how to use it.
Then you'll have to set the buttons you use with a description and set up a
switch section like this:


switch (nSelection)
case BACK:
// Change setup options
ListDestroy( listButtons );
ListDestroy( listDescrip );
Enable( NEXTBUTTON );
return BACK;
case 101:
// Full install
ComponentSetupTypeSet(MEDIA,"Full");
svSetupType="Full";
nSelection = NEXT;
case 102:
// Minimal install
ComponentSetupTypeSet(MEDIA,"Minimal");
svSetupType="Minimal";
nSelection = NEXT;
case 103:
// Custom install
ComponentSetupTypeSet(MEDIA,"Custom");
svSetupType="Custom";
nSelection = NEXT;
endswitch;

0 new messages