Hi,
I have been doing some research on dll files and I was looking for an answer to this:
I have built a DLL in VB. I compiled it with no problems.
I declare the dll at the form level:
Public Declare Function TEST lib "test.dll" (sPass as string) as integer
Then I try to use the function:
text1.text = TEST(text2.text)
When I run the app I get the error Can't find entry point in dll....
What am I doing wrong?
Thanks,
Guru2B
I have been doing some research on dll files and I was looking for an answer to this:
I have built a DLL in VB. I compiled it with no problems.
I declare the dll at the form level:
Public Declare Function TEST lib "test.dll" (sPass as string) as integer
Then I try to use the function:
text1.text = TEST(text2.text)
When I run the app I get the error Can't find entry point in dll....
What am I doing wrong?
Thanks,
Guru2B