I am trying to make sure that a user does not by pass a MsgBox by hitting the Esc key. Not sure if I just need to create my own GUI, or if it is possible to determine if Esc was hit. Local $iReturn = MsgBox(0,'Test', 'Do not hit ESC key!')
If @error Or $iReturn <> 1 Then
MsgBox('','','')
Else
Exit
EndIf