How to track all events/function calls fired in vb6 and log it
-
Hi, Is there any way to trap all the events, function/procedure calls fired and log it without modifying code for each function/event. Regards, Praveen
Nope. What are you trying to accomplish with this?
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008
But no longer in 2009... -
Nope. What are you trying to accomplish with this?
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008
But no longer in 2009... -
In my client places, a record is missing occassionally and we could not reproduce it in our systems. I would like to track the events/function calls in the client's place with event log.
Then you're going to have to instrument the code to log what you want. There's no real way to do it without changing the code.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008
But no longer in 2009... -
Then you're going to have to instrument the code to log what you want. There's no real way to do it without changing the code.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008
But no longer in 2009... -
I want something that is similar to vb code profiler which takes exe instead of .vbp and log the events.
Seeing as VB6 is a dead language, support for it is getting more and more sparse. Try looking through this[^] list for some options. Good luck with that!
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007, 2008
But no longer in 2009...