I have written a library in VBScript.
Now I would like to use it in another VBScript, but am not sure of the syntax.
How do I load my library given that its path is:
C://User/My Documents/VBlib.vbs
Normaly to load a class from an external library I would do:
Set OutlookApp = CreateObject("Outlook.Application")
To my understanding one of the possible solutions is to add my library to object reference library but by library has wrong file extension for that.