Quantcast
Channel: ClearScript
Viewing all articles
Browse latest Browse all 2297

New Post: Implementing Vbscript libraries

$
0
0
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

Viewing all articles
Browse latest Browse all 2297

Trending Articles