"Visual Basic" <S_C...@Hotmail.com> wrote in message
news:396de...@208.30.171.38...
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;