I have full screen on my ppc App. But I get a double take with Msgbox.
I have to accepet Yes or No twice to get it to work.
Code:
Sub ImageButtonExitForm1_Click
Msgbox ("Do you want to quit?",, cMsgBoxYesNo)
Form1.Close
End Sub
Sub Form1_Close
If Msgbox ("Do you want to quit?",, cMsgBoxYesNo) = cNo Then
Form1.CancelClose
End If
End Sub