Hi,
a basic question this one, I'm sure...
I wish to put code in a VB DLL. It is declared as Public thus:
Public Sub mysub()
MsgBox "Hello world"
End Sub
In the client app, it is declared as:
Public Declare Sub mysub Lib "testdll" ()
However I get error 453, entry point not found. I have done a VC++ DLL in VB, and thought VB DLL to VB should be easier.
Can someone help?
thanks...
a basic question this one, I'm sure...
I wish to put code in a VB DLL. It is declared as Public thus:
Public Sub mysub()
MsgBox "Hello world"
End Sub
In the client app, it is declared as:
Public Declare Sub mysub Lib "testdll" ()
However I get error 453, entry point not found. I have done a VC++ DLL in VB, and thought VB DLL to VB should be easier.
Can someone help?
thanks...