GetYesNoCancel


The GetYesNoCancel function displays a message in a standard Windows message box containing [Yes], [No], and [Cancel] buttons. The returned value may be tested for which button was pressed.

 

Syntax

number = GetYesNoCancel( string )

where

    string is the message to display and may contain multiple lines.

    number is the value returned by the dialog. [Yes] returns 1, [No] returns 2, [Cancel] returns 3.

  

This dialog differs from GetYesNo in that it adds a [Cancel] button and it returns a number rather than true/false.

Related Topics

GetAbortRetryIgnore

GetYesNo