The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
130 views

ProgressIndicator stay freezed when button is pressed. JavaFX

I'm using a indicator progress set to -1.0 to show some loading while loginprocess is running. But when I press the Enter button and start my executor with the loginProcess, my interface stays freezed ...
0
votes
2answers
117 views

How to make ProgressIndicator to fade out?

In my WP8 application I use a ProgressIndicator and I'd like it to fade out before making it invisible. I can't find any documentation describing how I can do that, the only exposed property of ...
0
votes
1answer
52 views

Pre-written progress indicators in Winforms?

In .NET (Winforms), are they are any pre-written progress indicators to indicate that a process is waiting for completion for an unknown time? I realise the hour-glass pointer can always be used, but ...
1
vote
1answer
225 views

How do I send a bytearray to server and detect progress?

I am using Flash runtime (flash player 10). I have a flv encoded bytearray which I need to send to the server( simple php, no FMS or socket servers) and save there. I can use the urlLoader and post ...
0
votes
1answer
128 views

Javascript: Preventing browser from freezing while calling server

I use jquery to display a progress indicator just prior to calling the server. After the call returns, I hide the progress indicator. The problem I am noticing is that the progress indicator never ...
0
votes
0answers
192 views

IKImageBrowserCell animation (progress indicator)

Hello, good people! This time I am stuck and require a bit of help! I have a subclass of IKImageBrowserView. I've got it's behaviour adjusted completely except progressIndicator animation in ...
5
votes
1answer
801 views

Change SystemTray Progress Indicator Color

i need change color of SystemTray.ProgressIndicator color, how i can do it? I tried setting ForegroundColor for SystemTray, it works for only text not Inicator. Indicator always uses PhoneAccent ...
0
votes
1answer
153 views

(Fluent) NHibernate progress events for lengthy transactions?

We've hooked up the ISaveOrUpdateEventListener event and hoped we could tie it to a progress bar update for each node being visited during the save traversal of a pretty big model, BUT the event only ...
0
votes
1answer
130 views

Code not working after returning back from background thread

I have a tableview (file name- five.m ) which works fine and shows data in tableview properly. When a user select a row then it adds a subview which shows a Progress Indicator on the same screen. ...
1
vote
2answers
86 views

Need to output the action of a system() command and have a progress indicator

I have a nice progress indicator from Need a progress indicator for a Perl system() command using T:R:G mod open(my $cmd, '-|', "$command $flags_args 2>/dev/null") or print "\nAttention: Command ...
4
votes
2answers
486 views

Need a progress indicator for a Perl system() command using T:R:G mod

I want a progress indicator that takes the output of a Perl system('make') and for each line output to STDOUT from the make command, I want to output a dot as a progress indicator. ...
1
vote
1answer
1k views

jQuery UI AutoComplete - How to implement progress-indicator?

If the question title wasn't clear enough: I am using the jQuery AutoComplete plugin (part of jQuery UI 1.8.5) I would have thought the supplied CSS/images would include an ajax-like progress image? ...
0
votes
1answer
555 views

iPhone Circular Progress Indicator

I'm trying to create a circular progress indicator like Shazam. It will represent progress during recording. There will be a finite amount of time and I want it to react to the sound level like ...
99
votes
18answers
7k views

Cooler ASCII Spinners?

In a console app, an ascii spinner can be used, like the GUI wait cursor, to indicate that work is being done. A common spinner cycles through these 4 characters: '|', '/', '-', '\' What are some ...
3
votes
3answers
2k views

Is it better to show ProgressBar UserForms in VBA as modal or modeless?

Is it better to show ProgressBar UserForms in VBA as modal or modeless? What are the best practices for developing progress indicators in VBA? Modeless UserForms require the use of ...
3
votes
3answers
1k views

How to display indeterminate NSProgressIndicator in the NSOutlineView?

I need to display a progress of loading of item's children. Please advise how to implement a progress indicator like it's done in Mail application: P. S. Here a source code of using indicator ...