How can one access a public sub in an activeX control from a form ? The form is started from the control(called shapeCtl) with form1.show 0
The shapeCTL has a public function defined as
Public property let Caption( ByVal Newcaption as string)
msgbox Newcaption
end sub
I would expect to at least be able to use something like shapeCtl.caption = "xxx" in my form1 but the shapeCTL does not even appear with Intellisense.
Thanks
The shapeCTL has a public function defined as
Public property let Caption( ByVal Newcaption as string)
msgbox Newcaption
end sub
I would expect to at least be able to use something like shapeCtl.caption = "xxx" in my form1 but the shapeCTL does not even appear with Intellisense.
Thanks