Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 2 of 2
  1. #1
    Join Date
    Aug 2009
    Posts
    4

    Insert a message box

    good afternoon,

    i would like to know if is possible to make appear a message box with a text when i click on a button.

    for example, at the end of setup, a message box "Remeber to reboot your computer"


    thank you,
    Matthew

  2. #2
    Join Date
    Jun 2005
    Posts
    470
    sure, search the help for Dialog.Message, you may put it in the On Post Install script or when the Finish button on the last screen is clicked.
    Code:
    if Dialog.Message("Reboot is required", "Reboot now?", MB_YESNO, MB_ICONQUESTION, MB_DEFBUTTON1) == IDYES then
    	System.Reboot();
    end

Posting Permissions

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