PDA

View Full Version : Conditionally displaying a Select Install Folder dialog



NewsArchive
02-27-2006, 01:46 AM
I'd like to conditionally display a Select Install Folder dialog based upon the
user's Setup Type selection. I've tried the approach below, but the dialog is
not displayed. What is the correct technique to implement this?

! Wizard dialog definition(s)
Define Wizard Dialog "#1" (Welcome)
Define Wizard Dialog "#2" (Password)
Define Wizard Dialog "#3" (License Agreement)
Define Wizard Dialog "#4" (User Info)
Define Wizard Dialog "#5" (Select Setup Types [Advanced])
Define Wizard Dialog "#6" (Custom Install)
Define Wizard Dialog "#7" (Select Install Folder)
If Feature "Server Files" selected Then
Define Wizard Dialog "#8" (Select Install Folder)
End
Define Wizard Dialog "#9" (Ready to Install)

Greg Fasolt
G. Fasolt and Associates

www: GFasolt.com S.M.

NewsArchive
02-27-2006, 01:46 AM
Greg,

Please use the "Wizard: Show/Hide Dialog..." function to handle this.

For example, see "Dialog Demo 2.sb5" demo script.

Does this help?

--
Friedrich Linder
CEO, Lindersoft
www.lindersoft.com
+1.954.252.3910

"point. click. ship" - that's SetupBuilder 5

NewsArchive
02-27-2006, 01:47 AM
Friedrich,

That does it! Thanks.

Now that I've seen the example, it makes complete sense to do this in the loop.

Greg