Re: Reading HTML params in ActiveX
MFC implements IPersistPropertyBag in the COleControl class and calls
DoPropExchange. What you need to do is overriding DoPropExchange and add PX_
entries in it.
void CActiveXCtrl::DoPropExchange(CPropExchange* pPX)
{
ExchangeVersion(pPX, MAKELONG(_wVerMinor, _wVerMajor));
COleControl::DoPropExchange(pPX);
if (pPX->GetVersion() == (DWORD)MAKELONG(_wVerMinor, _wVerMajor))
{
PX_String(pPX,_T("StringProperty"),m_strProperty);
}
}
--
Sheng Jiang
Microsoft MVP in VC++
<suresh.gn@gmail.com> wrote in message
news:1183521365.102545.171150@i13g2000prf.googlegroups.com...
On Jul 3, 10:19 pm, "Sheng Jiang[MVP]"
<sheng_ji...@hotmail.com.discuss> wrote:
search for IPersistPropertyBag
--
Sheng Jiang
Microsoft MVP in VC++<suresh...@gmail.com> wrote in message
news:1183441462.108744.22390@x35g2000prf.googlegroups.com...
Dear Experts,
I have an activex control. I am not able to figure out how the control
is reading the HTML param values from .htm page. Can some body guide
me or show me some links for more information.
Thanks and Regards
Suresh
Hi,
Thanks for the reply. But I could not find IPersistPropertyBag in the
code. I am new to activex technology. This control is an MFC activex.
I created a HTML page using the ActiveX control pad. I would like to
know where the data exchage is happening between the control and the
HTML page.
Regards,
Suresh