import VB ocx to VC++?
-
I would like to import an OCX to VC++. How do i make vc create all of the properties and events that VB sees immediatly when I drop it on the form? i tried to drop it on a vc form and use class wizard but it shows nothing? i would rather use vc than vb to make my app.
-
I would like to import an OCX to VC++. How do i make vc create all of the properties and events that VB sees immediatly when I drop it on the form? i tried to drop it on a vc form and use class wizard but it shows nothing? i would rather use vc than vb to make my app.
Just "dropping" a the ocx on your form does not create a wrapper class for it. Try to map a variable to it, and VC will automatically start for the process of creating a wrapper class. Then you'll have acces to what you need. SkyWalker
-
Just "dropping" a the ocx on your form does not create a wrapper class for it. Try to map a variable to it, and VC will automatically start for the process of creating a wrapper class. Then you'll have acces to what you need. SkyWalker