Problem using Activex component
-
I have an activex component that I want to use. The problem is that I don't know how to change the properties of the control dynamically. Is there any way to do this, or are properties purely bound to whatever values I give in the rc editor at compile time? Thanks for your consideration, Sean
-
I have an activex component that I want to use. The problem is that I don't know how to change the properties of the control dynamically. Is there any way to do this, or are properties purely bound to whatever values I give in the rc editor at compile time? Thanks for your consideration, Sean
Most controls will give programmatic access to the properties, although doing so isn't a requirement. This functionality will be exposed through interfaces on the control, typically the
IDispatch
interface. If you're using MFC's wizards a dispatch driver will be generated to make calling the methods trivial. Steve