How to catch an event with a modified tab in the property sheet

How to catch and process a notification that the selected tab has now changed in the class derived from CPropertySheetImpll? I added the TCN_SELCHANGE handler to the message map, but the peoperty sheet never received this notification. I use wtl and write in C ++.

+4
source share
1 answer

The property sheet sends PSN_SETACTIVE and PSN_KILLACTIVE to notify changed pages (valid for both regular and wizard property pages).

+2
source

All Articles