Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 5 of 5
  1. #1
    Join Date
    Oct 2007
    Posts
    15

    DialogEx + PageJump Question

    So here is what i am trying to achieve
    I need a button on DialoxEx which closes the dialog and navigates to a specific page. Since navigating through pages is impossible while the DialogEx is shown I tried putting Page.Jump onclose of the current dialog and then closing it but nothing happened.
    Does anyone has any idea how to do this?

    Thanks in advance

  2. #2
    Join Date
    Apr 2004
    Location
    Vancouver, Canada
    Posts
    1,790
    Put the Page.Jump in the page you open the dialog from.

    Code:
    DialogEx.Show("Dialog1")
    Page.Jump("Page2")
    Dermot

    I am so out of here

  3. #3
    Join Date
    Oct 2007
    Posts
    15
    Thanks for the reply but this is not going to work for me because i don't know which page is going to be opened before the dialog is opened. There is info on the dialog and based on it the user chooses where to go next. So is there a way to navigate from the dialog and not before the dialog is opened?

  4. #4
    Join Date
    Apr 2004
    Location
    Vancouver, Canada
    Posts
    1,790
    Then use a variable for the page name and set the variable to the page selected by the user.

    On the page:
    Code:
    DialogEx.Show("Dialog1")
    Page.Jump(JumpTo)
    On the dialog:
    Code:
    JumpTo = "Whatever page they selected"
    DialogEx.Close()
    Dermot

    I am so out of here

  5. #5
    Join Date
    Oct 2007
    Posts
    15
    Thanks buddy this was really helpful

Similar Threads

  1. AMS 7.5 bug - HTTP.Submit on DialogEx
    By Stephen G. in forum AutoPlay Media Studio 7.5 Suggestions
    Replies: 1
    Last Post: 10-21-2008, 07:56 AM
  2. Test Drive Question
    By jrthom1 in forum Setup Factory 7.0
    Replies: 3
    Last Post: 05-17-2007, 01:45 PM
  3. Question About Triggering the Clients
    By IAmCarol in forum TrueUpdate 2.0
    Replies: 1
    Last Post: 05-11-2007, 11:08 AM
  4. Math.RandomSeed() question
    By stickck in forum AutoPlay Media Studio 6.0
    Replies: 8
    Last Post: 06-09-2006, 09:42 AM
  5. Question on VB and AMS5
    By Martin_SBT in forum AutoPlay Media Studio 5.0
    Replies: 1
    Last Post: 12-11-2003, 08:22 AM

Posting Permissions

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