
Access to methods in a standard module in a different project
Hi Runar.
Create a new ActiveX Dll project, and rename Class1 to something clever like
MyClass. Then, copy the methods and properties from your module into the
class. Compile the project. Then, in the project that you want to use
those methods and properties, add a reference to the new dll. Then, create
a MyClass object, and you'll have access to all of those properties and
methods.
Might take you about ten minutes.
--
HTH
Craig Hunt, MCSE, MCDBA
AISA Logic, Inc.
http://aisalogic.com
--Think when you breathe.
How can I access methods and properties in a standard module in one project
from within another project?
-RS