I have a ActiveX DLL which has a std. Module and a Class(Product Class).
I have a method inside the std. Module called abc()[Not in the product class]
How do I access it?
Printable View
I have a ActiveX DLL which has a std. Module and a Class(Product Class).
I have a method inside the std. Module called abc()[Not in the product class]
How do I access it?
You mean from within the DLL or another Application?
From within DLL just make the sub public in the module and you call it like:
call modulename
From another application:
the sub must be in a class.