Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

66
votes
16answers
3k 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 ...
4
votes
2answers
216 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. ...
3
votes
3answers
1k 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
966 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 ...
1
vote
2answers
65 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 ...
0
votes
1answer
47 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
48 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. ...
0
votes
1answer
643 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
351 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 ...