By Vbscript libraries i mean a file having a collection of Vbscript Functions and SubRoutines.
Consider the following file setup:
Driver File:
Call Func1
Call Func 2
Library File1:
Function Func1
Some code
End Function
Library File2:
Function Func2
Some code
End Function
Right now i am appending all the code in both library 1 and library2 with Driver file before having them to execute.
Can you please suggest the best way to add vbscript libarary.
As i would also need to implement stacktrace in reports where the location of the code calling will also be reported
Consider the following file setup:
Driver File:
Call Func1
Call Func 2
Library File1:
Function Func1
Some code
End Function
Library File2:
Function Func2
Some code
End Function
Right now i am appending all the code in both library 1 and library2 with Driver file before having them to execute.
Can you please suggest the best way to add vbscript libarary.
As i would also need to implement stacktrace in reports where the location of the code calling will also be reported