I learnt all of my programming in Java and used to use the command prompt/debug window extensively to print information out to. I could use this to check flow and determine when things were executed, the order and more information about the workings of the code.
In VB I have been using Msgbox along with the Str() command. This is rather intrusive to the operation of the system. It also makes it hard to determine the order.
I thought of dumping stuff to a text file but thought that is rather complex and not as useful as a command prompt.
Any suggestions would be great. If a text file is the best option an example would be great.