
How to execute script code line by line?
Quote:
> How can I get notice of the actually executed script line using MS script
> control in a VB6 host application? I want to list the script code and
> highlight the actually executed script line.
So to be sure it sounds like you want the de{*filter*} to step through
your
VBScript that is in an external file?
I don't think you can do this because the code is not exposed to the
de{*filter*}.
I am fairly certain though that you could open the script as text and
read it line by line, doing whatever graphical presentation or pre-
processing that you want, and then passing the line of text to the
MSscripting object to be executed. Though this is not very elegant and
would require a lot more coding I think it may be the only way without
the help of some kind of web browser object to step line by line
through a script.
Hope that helps.