Hello,
I am now writing a dll with
VB 6. In there, I want to call another dll using example:
"Public Declare Function Something Lib "sthTest.dll" (ByVal a As String, ByVal b As Long) As Integer"
But I can't make it out. The Error message is
"Constants, fixed-length strings, arrays, user-defined types, and Declare statements not allowed as Public members of an object module"
How can I call a dll from a dll with VB6?
Thanks in advance.