Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

On Close: MsgBox("Do you want to Save?") or MsgBox("Do you want to quit w/o saving?")

Which is better approach and why.

like image 271
Chad Avatar asked Dec 09 '22 15:12

Chad


1 Answers

Instead of a yes/no question, use a question with custom buttons:

The file blah.txt has been modified. Would you like to save or discard it?

+------+    +---------+    +--------+
| Save |    | Discard |    | Cancel |
+------+    +---------+    +--------+
like image 130
Greg Hewgill Avatar answered Jun 08 '23 03:06

Greg Hewgill