I'm trying to creat a log file that lets me know when a certain part of my application has successfully executed. I've only started VB yesterday and am running into a few problems. Any ideas would be greatly appreciated.
Thanks
JK
Printable View
I'm trying to creat a log file that lets me know when a certain part of my application has successfully executed. I've only started VB yesterday and am running into a few problems. Any ideas would be greatly appreciated.
Thanks
JK
Do you mean in the Debug Window?
At the bottom of your VB IDE there should be a window that you can type in, if there isn't press Ctrl + G and one should appear (if it doesn't in means it's already there, look for a window you can type in that isn't the code window.
At Runtime you can write text to this window by using
Code:Debug.Print "This Text Goes in the Debug Window"
If you want to print out to a file there are some good tutorials Here
Hope this helps