Importing Your Components DLLs to a VB6 DLL (General questions)
Hi Traveller,
OK I think you can create something like that.
Here is simple example that will show you how to call component About Method in another dll:
-------------------------------------
Option Explicit
Dim WithEvents sftp1 As wodSFTPCom
Public Sub dll_About()
Set sftp1 = New wodSFTPCom
sftp1.About
End Sub
-------------------------------------
inside this example I'm using wodSFTP ActiveX component.
Let us know how it goes.
Regards,
Drazen