I can currently access a DLL i have locally on my machine with the CreateObject command below.
o = CreateObject("Application.Class")
This will only work if that DLL is registered on that local machine.
How would i access a DLL off of a server or centralized machine?
This would allow me to avoid installing software on hundreds of machines, very beneficial!
o = CreateObject("Application.Class")
This will only work if that DLL is registered on that local machine.
How would i access a DLL off of a server or centralized machine?
This would allow me to avoid installing software on hundreds of machines, very beneficial!