The hourglass tag has no wiki summary.
0
votes
0answers
51 views
How can I force a loading animation on Windows/Mac OSX?
I am trying to research computer anxiety on a loading animation. I would like to give instructions for the participant to perform a specific task and have that task get stuck showing a loading ...
5
votes
1answer
755 views
Change the wait cursor to default (auto) after the ajax call is complete using AjaxStop event (in Chrome)
I ran into this problem and from some google search I realized that this is probably a bug in Chrome and Safari browsers.
When I submit a form (basically , make an ajax call) the default cursor ...
1
vote
3answers
1k 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
107 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 ...
1
vote
2answers
3k 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 ...
0
votes
0answers
619 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 ...
1
vote
1answer
426 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 ...
2
votes
2answers
2k 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 ...
0
votes
1answer
267 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 ...
4
votes
4answers
3k 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
1answer
678 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 ...
2
votes
1answer
428 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 ...
4
votes
2answers
2k 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 ...
0
votes
2answers
4k 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 ...
14
votes
1answer
7k views
4
votes
4answers
608 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 ...
30
votes
9answers
19k 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...
...