ActiveX Control property missing

  • Thread starter Thread starter Lance Johnson
  • Start date Start date
L

Lance Johnson

I've placed an ActiveX control on my Form and that all works OK. The one
problem I'm having is that the property Location is needed, but when it's
converted to a windows forms control, the Location property is now meant for
the location on the form. How can I use the property from the ActiveX
control?


Lance
 
Lance,

When wrapping an ActiveX control, any property name clashes are resolved by
renaming. I think you'll find the Location property renamed to "CtlLocation"
or something like that (from memory).

Kent
 
Thanks. That solved the problem.

Lance

Kent Boogaart said:
Lance,

When wrapping an ActiveX control, any property name clashes are resolved by
renaming. I think you'll find the Location property renamed to "CtlLocation"
or something like that (from memory).

Kent
 
Back
Top