Indigo Rose Software

Professional Software Development Tools

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

    Disable Windows Exit

    Is it possible to disable the Windows X (exit)? If so how - Could not find anything in the forums.

    See attached image. Thanks
    Attached Images

  2. #2
    Join Date
    May 2006
    Posts
    5,380
    look in the help file under "Hidden Global Functions"

    for pages
    Code:
    function QueryAllowProjectClose()
        result= Dialog.Message("Application Exit", "Are you sure that you want to quit?", MB_YESNO, MB_ICONEXCLAMATION, MB_DEFBUTTON1);
        --if they choose yes 
        if result == IDYES then
            --allow the app to close
            return true;
        else
            --cancel close
            return false;
        end
    end
    for dialogs
    Code:
    function QueryAllowDialogClose(strDialogName)
        result= Dialog.Message("Close Dialog", "Are you sure that you want to close the dialog?", MB_YESNO, MB_ICONEXCLAMATION, MB_DEFBUTTON1);
        --if they choose yes 
        if result == IDYES then
            --allow the dialog to close
            return true;
        else
            --cancel close
            return false;
        end
    end
    Open your eyes to Narcissism, Don't let her destroy your life!!

  3. #3
    Join Date
    Feb 2006
    Posts
    346
    Thanks RizlaUK - That worked!

Similar Threads

  1. Dependency Module: Windows Installer (MSI) 4.5
    By venky in forum MSI Factory 2.0 Examples & Modules
    Replies: 6
    Last Post: 01-24-2012, 04:17 PM
  2. attempting to compare a variable with the contents of an array
    By Lucian Cain in forum AutoPlay Media Studio 5.0
    Replies: 4
    Last Post: 10-17-2006, 03:10 PM
  3. INFO: JET and MDAC (Complete) Runtime Notes
    By Desmond in forum Setup Factory 6.0 Knowledge Base
    Replies: 0
    Last Post: 11-28-2003, 08:35 AM
  4. INFO: Setup Factory and the Windows Installer
    By Support in forum Setup Factory 6.0 Knowledge Base
    Replies: 0
    Last Post: 10-22-2002, 10:38 AM
  5. HOWTO: Install Files to the Windows Directory
    By Support in forum Setup Factory 6.0 Knowledge Base
    Replies: 0
    Last Post: 09-18-2002, 02:33 PM

Posting Permissions

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