Click to See Complete Forum and Search --> : Vb6 Dll


MoonNight
November 18th, 2002, 02:25 PM
Hi!

I am trying to use a DLL written in vb6 that is present in a package that I d/l. Here is how I refered to it:

Declare Auto Function MyName Lib "vb6DLL.dll" Alias "DLLFunctname" (ByVal Value As Long) As Byte

The debugger then tells me that it cannot find the entry point for the DLLFunctName function. I do not have the source code for the DLL, so I do not know how it was written. I only have the .BAS file that come with the DLL so I know that I am calling the right function.

What should I do?

Thank you