Tagged Questions
The hourglass tag has no wiki summary.
8
votes
1answer
3k views
8
votes
7answers
6k views
Getting the browser cursor from “wait” to “auto” without the user moving the mouse
I use this jQuery code to set the mouse pointer to its busy state (hourglass) during an Ajax call...
$('body').css('cursor', 'wait');
and this corresponding code to set it back to normal...
...
4
votes
2answers
786 views
Why doesn't my cursor change to an Hourglass in my FindDialog in Delphi?
I am simply opening my FindDialog with:
FindDialog.Execute;
In my FindDialog.OnFind event, I want to change the cursor to an hourglass for searches through large files, which may take a few ...
4
votes
4answers
464 views
Can CSS handle this hourglass-like situation?
I am having a tough time thinking a solution to the following problem.
Let me illustrate it first
Situation
I have 26 items (in this example, in general the number is not known..) but only 12 can be ...
2
votes
1answer
267 views
Avoid hourglass mouse cursor when calling a web-service?
I don't know if this is a general web-services issue or just my specific scenario, which is a WPF application with a DispatcherTimer calling a web-service method.
Whenever the timer is called, the ...
1
vote
2answers
472 views
Hourglass while form submits
I have a grails application which parses a CSV file. I have it working with a form, and when people upload the form it can take 30 seconds plus to get the next page during which time only an astute ...
1
vote
1answer
242 views
How should I solve Chrome's XMLHttpRequest intrusive 'loading' behavior?
Here's a problem Google can't answer.
I'm doing some HTTP "long polling" with XMLHttpRequest for a multiplayer game.
In Chrome, this causes the tab to always be "loading" :
(1) the icon in the tab is ...
1
vote
2answers
597 views
How to create a win32 application without window in background with C?
The application do not need any window or console. It can be a console application if the console window can be removed or can be put into background. The application will do some simple tasks(such as ...
1
vote
4answers
1k views
Hourglass problem in a WinForm application
In my program with a UI in WinForm. I set the cursor to a hourglass just before to launch a method in ThreadPool.
My code in UI thread to set the cursor looks like this :
Application.UseWaitCursor = ...
0
votes
3answers
197 views
How to show a Wait cursor using C# without having an active (or any) Windows Form?
I have tried using this code sample:
private void DoShortRunningTask()
{
using (new StWaitCursor())
{
Thread.Sleep(5000); // 5 sec delay.
.. do some work ..
}
}
From: ...
0
votes
1answer
41 views
Hourglass in grails
I have a Grails app that downloads a file that's generated from a database query that takes about a minute. How can I implement a sort of hourglass (or something prettier) so the user knows the ...
0
votes
0answers
298 views
How to implement hourglass implementation in form postback in vb.net
How to implement hourglass implementation in from postbackin vb.net.
We have written the code like below. It is not not working all the browsers and some times not working.
body ...
0
votes
1answer
99 views
Android built-in spinner
I have a web service which queries the cloud for some data and then populates a ListView.
I would like to display some sort of spinning indicator to the user letting them know that the cloud is being ...
0
votes
1answer
272 views
Outlook 2007 : VBA Macro: GUI update (HourGlass for Mouse Pointer) not happening?
I have a simple VBA program to download attachments from a Mail Item; I'm launching a Macro (that is a 'sub' in a Module), which does a 'Form.Show' to launch a User Form. There is a button on the User ...
0
votes
2answers
2k views
Outlook VBA Macro: Best way to indicate 'please wait'
What's the best practice for indicating to the user that a Macro is running within Outlook ?
The macro can take around 1-30 seconds to complete.
I want to avoid a modal 'msgbox' popping up before the ...