|
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.
|
|
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.
|
|
Is there a Windows native API analogous to pthread_cancel, pthread_testcancel etc?
If not, how can we simulate cancelling of one thread from another using the pthread_cancel mechanism in Windows?
Started by Jay on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
It ....
The FAQ mentions the Pthreads library using a packages called "QueueUserAPCEx" in order to achieve true asynchronous user-mode notifications .
The Pthreads/win32 FAQ talks about this under question 9, "Cancelation doesn't work for me, why?".
|
|
Is there an easy way to cancel a curl_easy_perform from another thread?
Started by Lodle on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
So if i return !0 in that it will cancel it?
Edit users try to cancel the....
Im using progress callback atm.
The other to cancel the operation.
You have to use the callback functions (write/read/progress) to perform the cancel.
|