Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 3 of 3
  1. #1
    Join Date
    Feb 2006
    Posts
    1

    New Finish Dialog

    This is simple... only with Factory

    1. Delete your default Finish dialog
    2. Put dialog check buttons. Import 2 check buttons
    3. Diasbla all button except Finish
    4. onNext put this script


    Code:
    result1 = DlgCheckBox.GetProperties(CTRL_CHECK_BOX_01);
    -- These actions are performed before the screen is shown.
    result2 = DlgCheckBox.GetProperties(CTRL_CHECK_BOX_01);
    sApplication = "%AppFolder%\\Centrala.exe"
    if (check01) then
     File.OpenURL('http://www.yourfirmsait.com/', SW_SHOWNORMAL);
    end;
    if (check02) then
    	File.Open(SessionVar.Expand("%AppFolder%\\Centrala.exe"), '%AppFolder%\\', SW_SHOWNORMAL);
    end;
    error = Application.GetLastError();
    if (error ~= 0) then
     Dialog.Message("Error_1", _tblErrorMessages[error], MB_OK, MB_ICONEXCLAMATION);
    end;
    Screen.Next();
    if Dialog.Message('Restart', 'Do you wana to restart?', MB_YESNO, MB_ICONQUESTION, MB_DEFBUTTON1) == IDYES then
     System.Reboot();
    else
     Application.Exit(0);
    end;

  2. #2
    Join Date
    Apr 2007
    Posts
    1
    hi,

    Good smaples for beginner, I am just newbie here,

    Thanks.

  3. #3
    Join Date
    Sep 2009
    Posts
    2
    Any screen shots?

Similar Threads

  1. add dialog
    By bobbie in forum AutoPlay Media Studio 6.0
    Replies: 3
    Last Post: 01-15-2007, 10:37 AM
  2. Install driver finish then show a Dialog Message....
    By porsha in forum AutoPlay Media Studio 5.0
    Replies: 4
    Last Post: 11-16-2006, 11:36 PM
  3. Displaying a Save As Dialog
    By Desmond in forum AutoPlay Media Studio 5.0 Examples
    Replies: 0
    Last Post: 10-01-2003, 03:53 PM
  4. Using the Status Dialog Window
    By Desmond in forum AutoPlay Media Studio 5.0 Examples
    Replies: 0
    Last Post: 09-22-2003, 02:52 PM
  5. MDAC dialog box pops up. How to remove it ?
    By weld in forum Setup Factory 6.0
    Replies: 0
    Last Post: 12-11-2002, 07:14 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