up vote 1 down vote favorite
share [g+] share [fb]

I have developed an ActiveX control in VB 6.0. I have a placeholder in my ActiveX control, where I need to load a user control developed in VB 6.0 at runtime. The user control has to be part of another DLL/OCX file.

  1. How do I load the user control in VB dynamically?

  2. All the user controls have some common functionalities. Can I implement the common functionalities in the base class and write only specific code in user control?

link|improve this question

21% accept rate
What exactly is your question? What do you want to know? – Daniel Rikowski Apr 3 '09 at 10:02
I have changed the post. please go through the same. thanks for asking – santhosh Apr 3 '09 at 11:06
feedback

1 Answer

  1. You can load the control like any other control, using CreateObject. Then you have to assign the control as a child control to your container. (In a standard VB6 form you can do this with Controls.Add. (See this))

  2. This is possible only to a certain degree. COM/ActiveX is all about composition, there's no inheritance. You could create a helper class which provides the common functionality and is instanciated and used by the user controls.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.