Without Visual Studio installed on client machine, is there a way to follow or log program execution steps?
I am trying to debug an error that I cant reproduce on my dev machine.
Printable View
Without Visual Studio installed on client machine, is there a way to follow or log program execution steps?
I am trying to debug an error that I cant reproduce on my dev machine.
Use try/catch blocks and write any exceptions to a log file.
Quote:
Originally Posted by stanav
Its not an exception, its strange behavior.
Can you explain a little more about this "strange behavior"? What is your program expected to do but isn't doing it?
It moves a tablelayout panel unexpectedly when I click on the form. This behavior only occurs on client machine, I cant reproduce error at home.
Is there a way to log the procedure name I am in?
Debug.Print <procedure name> supposed to work on own or do you need an add in?