+ Reply to Thread
Results 1 to 2 of 2

Thread: Dialog processing

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. Default Dialog processing

    I'm trying to setup an install where the user chooses one of four possible modes, in the custom mode the custom dialog is displayed. When using the code listed below, moving through the dialogs with next, previous, change option and next causes the install script to exit (no message). Also the set active setup type doesn't seem to change the values in the custom dialog. Am I doing this right or is there an easier way?

    Thanks in advance,
    Gordon

    Code:
    Define Wizard Dialog "#1" (Welcome)
    Define Wizard Dialog "#2" (License Agreement)
    Define Wizard Dialog "#3" (Select Install Folder)
    Define Wizard Dialog "#4" (Radio Buttons)
    Define Wizard Dialog "#5" (Custom Install)
    Define Wizard Dialog "#6" (Ready to Install)
    Hide Wizard Dialog "#5"

    Loop Wizard
    Handle Wizard Events()

    If %_SB_DIALOGID% Equals "4" Then
    If %RADIO% Equals "1" Then
    Set Active Setup Type to "Stand Alone"
    Hide Wizard Dialog "#5"
    ElseIf %RADIO% Equals "2" Then
    Set Active Setup Type to "Typical Server"
    Hide Wizard Dialog "#5"
    ElseIf %RADIO% Equals "3" Then
    Set Active Setup Type to "Typical Workstation"
    Hide Wizard Dialog "#5"
    Else
    Set Active Setup Type to "Custom"
    Show Wizard Dialog "#5"
    End
    End
    If %_SB_DIALOGNEXTID% Equals "5" Then
    Refresh Next Dialog
    End
    End

  2. Default Re: Dialog processing

    Got this one figured out

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Conditionally displaying a Select Install Folder dialog
    By NewsArchive in forum SetupBuilder - NNTP
    Replies: 2
    Last Post: 02-27-2006, 01:47 AM
  2. Deferent text in Select Install Folder dialog ?
    By NewsArchive in forum SetupBuilder - NNTP
    Replies: 2
    Last Post: 09-06-2005, 12:12 AM
  3. Changing features presented in custom dialog
    By GordonHolfelder in forum SetupBuilder
    Replies: 2
    Last Post: 06-06-2005, 11:22 PM
  4. Conditional copy files
    By NewsArchive in forum SetupBuilder - NNTP
    Replies: 1
    Last Post: 02-22-2005, 01:59 AM
  5. Define Wizard Dialog ideas
    By sphair in forum SetupBuilder
    Replies: 2
    Last Post: 10-29-2004, 04:01 AM

Tags for this Thread

Posting Permissions

  • You may post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts
  •