Create a VB dll and reference it in an Outlook Form

  • Thread starter Thread starter psid
  • Start date Start date
P

psid

Hi,
I want to create a dll in VB that I want to reference in Outlook form
so that I can send data to the dll from the form.
Can anyone suggest how this can be done?
Thanx in advance.
Sid
 
Am 23 Nov 2005 04:09:25 -0800 schrieb psid:

Sid, create the DLL. Then you can reference it like any other ActiveX
library via Tools/References.

Dim obj As YourDLL.YourClass
Set obj=New YourDll.YourClass
 
Back
Top