I have a C++ add in for Outlook and it communicates with a form region.
In CFormRegionShow::Show I try to change the GUI. For an example:
CComPtr<MSForms::IControl> spICCText;
spControls->_GetItemByName(_bstr_t(L"CCText"), &spICCText);
spICCText->put_Top(0);
And I'm guessing this code should paint the text box on the top of my screen (since I modify it's Top property). However, nothing happens. What am I missing?
spICCText is not null since I do manage to do
spICCText->put_Visible(VARIANT_FALSE);
But i still want to move it to a different place in the screen...
Thanks a lot!
Nili