Cannot handle WM_INITDIALOG in Outlook::PropertyPage

K

Kentaro KAWAMOTO

Hi,

I am developing Outlook addin with VC++ .NET which adds
a property page to Outlook option dialog.

It was successfully added, but when I clicked the tab,
a message handler for WM_INITDIALOG was not called.

Using spy++ I found WM_INITDIALOG was not sent to property pages.
Where should I initialize property pages.

Thanks.
 
F

Fredrik Wahlgren

Kentaro KAWAMOTO said:
Hi,

I am developing Outlook addin with VC++ .NET which adds
a property page to Outlook option dialog.

It was successfully added, but when I clicked the tab,
a message handler for WM_INITDIALOG was not called.

Using spy++ I found WM_INITDIALOG was not sent to property pages.
Where should I initialize property pages.

Thanks.

Maybe this will help:
http://www.thecodeproject.com/macro/enhancedwindowlist.asp

/Fredrik
 
S

s3ven

Same for me, can't receive WM_INITDIALOG (not present with spy++) and
WM_ACTIVATE (presents for the property page in spy++)

So i use the WM_SIZE event (wich for me is called twice, once when the
property page is displayed and another when i click in it , so i use a
gbAlreadyFired flag :/ )
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top