[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Win32 DLL functions



PureBytes Links

Trading Reference Links

The CreateObject function will create any COM object.  There's a Word
example in the OLE Automation section of the VB Doc.

For a VB ActiveX DLL you have to call CreateObject.  The ActiveX DLL methods
can't be referenced using the DLL function declaration
 ( Declare Sub xxx Lib "DLLName" (x As Integer) )

The DLL function declaration is for Win32 DLL functions.