Hi folks,

I am creating ActiveX component using MS Visual Studio 6.0 and currently I am adding Property Dialog to it.

I have problems with redrawing.

I wrote code for "Apply" function (virtual function of IPropertyPageImpl),
which calls method of my main Interface

STDMETHODIMP CCharterMaker:ut_data(int num, int newVal)
{
AFX_MANAGE_STATE(AfxGetStaticModuleState())

data[num]=newVal;
FireViewChange();

return S_OK;
}

When I pressed button "Apply" - I see redrawing of my object only when
I test this ActiveX with AciveX Test Control Container,
but didn't see - when test it with Microsoft Word 2000.
Is it possible to solve this problem without using any events ?