progress-indicator

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

主宰稳场 提交于 2019-11-29 10:14:39
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 Application.Interactive = False , whereas Modal UserForms by their very nature block any interaction with the application until the core procedure has finished, or is cancelled. If Application.Interactive = False is used, however, the Esc key interrupts code execution, so the use of Application.EnableCancelKey = xlErrorHandler and error handling ( Err.Number = 18 ) is required in both the UserForm and the calling

Cooler ASCII Spinners? [closed]

做~自己de王妃 提交于 2019-11-28 02:31:12
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 other cyclical animation sequences to spice up a console application? Balloons... . o O @ * Joe Koberg Lots of choices with Unicode, including ⌚ and ⌛! ← ↖ ↑ ↗ → ↘ ↓ ↙ ▁ ▂ ▃ ▄ ▅ ▆ ▇ █ ▇ ▆ ▅ ▄ ▃ ▁ ▉▊▋▌▍▎▏▎▍▌▋▊▉ ▖ ▘ ▝ ▗ ┤ ┘ ┴ └ ├ ┌ ┬ ┐ ◢ ◣ ◤ ◥ ◰ ◳ ◲ ◱ ◴ ◷ ◶ ◵ ◐ ◓ ◑ ◒ ◡◡ ⊙⊙ ◠◠ ⣾⣽⣻⢿⡿⣟⣯⣷ ⠁⠂⠄⡀⢀⠠⠐⠈ The entire braille block, even in random order http://www.fileformat.info/info/unicode/block/braille_patterns

Cooler ASCII Spinners? [closed]

一曲冷凌霜 提交于 2019-11-26 23:44:39
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 5 years ago . 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 other cyclical animation sequences to spice up a console application? 回答1: