--
Mike J. Deakins
For the shining star in my skies.
You do know VB dlls are ActiveX dlls, so they only export the register
server functions?
If you want to make "real" DLLs, you need an addon that does that.. I think
powervb.com has one, not sure.
--
Max Bolingbroke MCP
http://www.bolingbroke.net/novanet/
I found that addin:
http://www.vbadvance.com
HTH
VB 5 and 6 create *real* DLLs with real assembly code compiled by VC 5 (the
compiler backend). The only point is that VB does not allow you to specify
exports. Somebody did the hack by using a stub vb6.exe (the compiler) and
creating an export file which LINK.EXE uses.
--
DllCanUnloadNow
DllGetClassObject
DllRegisterServer
DllUnregisterServer
Therefore I said it's not a real DLL.
--
Mike J. Deakins
For my shining star in my skies.