We are trying to create a DLL using VB 6.0. Start the project off as a DLL and it supposedly takes care of everything. Anyhow, we can call the DLL from another VB EXE, but can't get the function recognized in OI32. Yes - we DECLARE_FCNS, but the error message we keep getting is that "'imgcvrt' is not in dll imgcvrt". Further inspection with Quickview shows that it doesn't list the function either. Has anyone had any luck with this?
I recommend using the VC++ program "DUMPBIN /EXPORTS TheDll.Dll" (or a similar tool) to get a listing of the actual entry point names exported by the dll.
Pat