Call function in a dll file

Russ9517

Registered User.
Local time
Today, 22:14
Joined
Sep 15, 2006
Messages
30
How do you call a function that has been created in a dll file?
dll file was created in vb and is called test
i've added it to the references in access
Is there something else i need to declare?
:confused:
 
Once you've added it as a reference it should be a case of:

Dim myTest as new Test

Then call the method on myTest
blah = myTest.someMethod()
 

Users who are viewing this thread

Back
Top Bottom