An ActiveX wrapper Clasee

G

Guest

Hi,

How can I create an ActiveX wrapper Class.

There is a 3rd party ActiveX on my Component Tray that I like to write a
class to encapsulate.

Users will use my class as a replacement to the ActiveX, so they should not
need to drag the ActiveX into their form.

I am using VB2005 Express Edition.

In my program I declare my program:-
Private WithEvents myAxObj As 3rdParty.AxComponent

In one of my method I call the ActiveX
myAxObj.RunProgram

and it returns "Object Reference not set to an instance of an object"

I'd try to initiate the object by
myAxObj = New 3rdParty.AxComponent
but it can't compiled.


Thank You,
mfwoo
 
G

Guest

Users will use my class as a replacement to the ActiveX, so they
should not need to drag the ActiveX into their form.

I am using VB2005 Express Edition.

In my program I declare my program:-
Private WithEvents myAxObj As 3rdParty.AxComponent

Did you add a reference to the ActiveX DLL?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top