R Russ9517 Registered User. Local time Today, 22:14 Joined Sep 15, 2006 Messages 30 Dec 15, 2006 #1 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?
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?
O OllyK Registered User. Local time Today, 22:14 Joined Dec 14, 2006 Messages 19 Dec 15, 2006 #2 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()
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()