I am debugging someone else's software and it doesn't look like the code within Sub Main()
is getting hit.
How can I check that the code in main() is actually running?
Main():
Sub Main()
‘some code
End Sub
Based on your comments, first get sure that you have set Sub Main
as the startup object.
To do this:
Application
Startup
objects:
Sub Main
After that your Sub Main
will be called and should be also debuggable.