In any OS (Operating System), there areOK
andApply
buttons.
We saw them when trying to modify some internal settings of the OS itself or an application which is installed in that OS.
The Difference
-
OK
ButtonApplies the changes and closes the dialog (or goes back to the previous location/one level up).
-
Apply
ButtonApplies the changes, but keeps the dialog open, so user can make further modifications.
Therefore, if you wanna save the current changes you made and then close the dialog right away, hit the OK
button.
No need to hit Apply
button then OK
button.
Just one time, hit the OK
button.
But, if you wanna save the current changes you made then wanna make some further changes, then hit the Apply
button.
How about Cancel
and Close
(or X
) buttons?
It depends on the pop-up dialog you're at.
They can have the exact same function, that is to close the window/dialog.
Other case, such as in a document/text editing program or other editor software, if you haven't saved the changes you made in that program, and you try to close it (by hitting the X
or Close
button), it will then prompt a pop-up (reminder) window to save the current changes and then close the program or not save anything and just close the program.
In this reminder dialog, you'll also see the Cancel
and the X
(close) buttons. The Cancel
and the X
(close) buttons will have the same function, that is to close the pop-up dialog, and goes back to the program.
The pop-up notifier/confirmer (and the buttons) is one of fail-safe
procedures in digital world.
Comments
Post a Comment