Hi again,
You can enable script debugging in your VBScript instances by passing
Another way to attach a debugger is to insert a VBScript
Good luck!
You can enable script debugging in your VBScript instances by passing
WindowsScriptEngineFlags.EnableDebugging
to the VBScriptEngine
constructor. You should then be able to attach Visual Studio or another debugger to your running application for script debugging.Another way to attach a debugger is to insert a VBScript
stop
statement somewhere in the script code. When VBScript executes this statement, a dialog will appear giving you the opportunity to launch or attach a script debugger paused at that point in the script.Good luck!