Is there any way to fetch all the variable values in the script at runtime.
Consider the following vbscript code.
var1= 5
Var2= 6
For i=0 To 5
Msgbox i
Next
How do i Implement it using msscript control that i should be able to retrieve all the variables at runtime?
I am looking to implement a debugger for vbscript can i have the list of all the variables at runtime like below.
var1=5
Var2=6
i=5
Any help on this would be much appreciated.
Thanks in advance!
Here you are! Save the code below as VBScript file: