The "Set Active Setup Type" doesn't appear to be working (or maybe I don't understand this feature). In my setup, I use a radio button to choose between a Workstation and a Server Installation, each of which have different overlapping features. I would like the appropriate set displayed in the custom dialog window when either of the "custom" radio options are chosen. The code I'm using (that doesn't seem to work):

Loop Wizard
Wizard Auto Break
If %_SB_DIALOGID% Equals "3" Then
If %RADIO% Equals "1" Then
Set Active Setup Type to "Stand Alone"
Hide Wizard Dialog "#4"
Hide Wizard Dialog "#6"
ElseIf %RADIO% Equals "2" Then
Set Active Setup Type to "Typical Workstation"
Hide Wizard Dialog "#4"
Show Wizard Dialog "#6"
ElseIf %RADIO% Equals "3" Then
Set Active Setup Type to "Custom Workstation"
Show Wizard Dialog "#4"
Show Wizard Dialog "#6"
ElseIf %RADIO% Equals "4" Then
Set Active Setup Type to "Typical Server"
Hide Wizard Dialog "#4"
Hide Wizard Dialog "#6"
Else
Set Active Setup Type to "Custom Server"
Show Wizard Dialog "#4"
Hide Wizard Dialog "#6"
End
End
End


The custom dialog is #4.

Let me know if I'm doing something wrong.

Thanks,
Gordon