Debug mode can seem really slow when outputting a lot of information (eg. listing sub-directories), but I've found that if you minimize the Debug Output window it can finish in a fraction of the time, and you can then just review the output at your leisure.
Try this in Debug mode -- the Debug Output window opens and prints "Hello World" 10,000 times, but takes around 10 seconds to do so here:
Code: Select all
For a = 1 To 10000
Debug "Hello World"
Next
It'd be nice if it could automatically minimize when running a program, and perhaps also pop up when a program is ended.
Thanks for reading!