I would like to create some form of shared library that I can put all my little functions in and then share it with all my programs. I have tried building an ActiveX dll using a reference to it but I need to establish a new instance of the Class which is a pain.
I simply want to be able to code in VB something like
X = MyFunction(y,z)
Where MyFunction is stored in a library of my subs and functions. Is it possible to build some form of library that will allow me to do this?
I simply want to be able to code in VB something like
X = MyFunction(y,z)
Where MyFunction is stored in a library of my subs and functions. Is it possible to build some form of library that will allow me to do this?