|
When does one use OK+Cancel in a dialog and when "Save + Cancel". I have seen them used interchangeably. Is there a window standard?
Started by Roel Vlemmings on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Before closing?" => Yes/No/Cancel
"All changes will be lost when closing this window." => OK/Cancel
As you see you really need to pay attention to the question/statement to display meaningful?" => Yes/No
Selecting Exit in the menu....
|
|
I put a Yes/No/Cancel Messagebox in FormClosing Method of my form. and now this is Message box text: Do You Want to Save Data?
I am not a profesional and not know how to handle if user clicked Cancel Button? Exactly the result of clicking on Cancel Button...
Started by mahdiahmadirad on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You could have.
FormClosing has a Boolean parameter which, if set to True when the function returns, will cancel, FormClosingEventArgs e) { // Set e.Cancel to Boolean true to cancel closing the form }
See here .
|
|
This is inspired by the question OK-Cancel or Cancel-OK? .
I remember reading somewhere about the concept of switching OK-Cancel/Cancel-OK in certain situations to prevent the user from clicking through information popups or dialog boxes without reading...
Started by cschol on
, 22 posts
by 22 people.
Answer Snippets (Read the full thread at stackoverflow):
For example, instead of OK and Cancel buttons, have them say "Send Invoice" and "Go Back, this one by a .NET guy on MSDN ....
What you could do is use verbs or nouns instead of the typical Windows OK / Cancel the dialog.
Almost never works.
|
Ask your Facebook Friends
|
I call obackgroundworker.CancelAsync(); on a background worker currently doing some work in another thread and then using while (obackgroundworker.IsBusy == true) to wait for it to finish before quitting the application (in case the user changes their...
Started by Nathan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
|
|
Selling up to 60% for satellites on Stars on Wednesday. The Eureka-Tour sat is a direct qualifier with 1 package guaranteed; the EPT sats are for their respective 530 EURO package qualifiers on Sunday 18th. I intend to play any/all target tournaments ...
Started by Giffordonian on
, 13 posts
by 7 people.
Answer Snippets (Read the full thread at twoplustwo):
We it out on you in your thread twice in a week your punishment... .
As self-punishment I'll go ahead and cancel this thread.
|
|
Which is the right order for arranging buttons in a dialog box?
Started by Omega on
, 23 posts
by 23 people.
Answer Snippets (Read the full thread at stackoverflow):
IIRC, Windows guidelines suggest OK-Cancel, whereas Apple recommends Cancel-OK
Thanks for your opinion....
Depends on if you use windows or mac.
OK Cancel
unless you live in a locale or an app that has the opposite as convention.
|
|
How to cancel background worker after specified time in c# or cancel not responding background worker.
Started by Suriyan Suresh on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
BackgroundWorker does not have support either case.
Of the BackgroundWorker to cancel the thread.
|
|
Hello money savers!
How are you?
I have some great news for people who want to cancel their Virgin Media contract WITHOUT having to pay any cancellation charge. I just did it... you can too!
The problem: I moved house 6 months ago, and they put me on ...
Started by Firestorm on
, 14 posts
by 13 people.
Answer Snippets (Read the full thread at moneysavingexpert):
A better deal & i took it now vm are trying to say i have to pay them £180 to cancel my contract they make me or what can i do
Thanks i am with you on this one i phoned to cancel my contract and been told on the phone it is in their terms....
|
|
I have a link like
<a href="www.site.com" class="cancel">go there </a>
And then I have some jQuery:
$(".cancel").click(function(){ confirm("sure??"); });
But when I click cancel in the alert box it still goes to www.site.com in stead of doing...
Started by sanders on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
:
$(".cancel").click(function(){ return confirm("sure??"); });
returning bool is the old way to do/jQuery.Event#event.preventDefault.28.29
$(".cancel").click(function(event){ if (!confirm("Sure.
|
|
I am using jquery ui dialogs in my application. How do I style the "Save" and "Cancel" buttons differently in a jquery dialog? So "Save" is more appealing than the "Cancel". I could use a hyper link for "Cancel", but how do I place that in the same button...
Started by Sabya on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Above....
You can style this button however you like.
$('.ui-dialog-buttonpane :last-child').css('background-color', '#ccc');
This will make the Cancel button little grey.
Button> </div>
Adding a class to Cancel button should be easy.
|