is there a way to know if CPropertyPage dialog's state has changed since
OnInitDialog and OnOK functions (ie. state betwwen showing the dialog and
closing it)? e.g. CPropertyPage has been displayed with IDC_CHECK checked,
user unchecks that IDC_CHECK and tap OK. how can I know automatically has
the state on that page been changed because I have a lot of pages and lot of
CHECK's on them. thanks for replying.

Re: how to know? by Yaroslav

Yaroslav
Mon Mar 13 02:42:58 CST 2006

Could you explain when you want to be notified? You can get a notification
from a check-box immediately after its state has been changed.

--
Yaroslav Goncharov
Spb Software House


"blue" <blue@blue.blue> wrote in message
news:OQDgw%23lRGHA.4792@TK2MSFTNGP14.phx.gbl...
> is there a way to know if CPropertyPage dialog's state has changed since
> OnInitDialog and OnOK functions (ie. state betwwen showing the dialog and
> closing it)? e.g. CPropertyPage has been displayed with IDC_CHECK checked,
> user unchecks that IDC_CHECK and tap OK. how can I know automatically has
> the state on that page been changed because I have a lot of pages and lot
> of CHECK's on them. thanks for replying.
>



Re: how to know? by blue

blue
Wed Mar 15 00:03:15 CST 2006

> Could you explain when you want to be notified? You can get a notification
> from a check-box immediately after its state has been changed.

Not precisely. Here's the concrete situtation: I have 2 Property Sheets in
my app (every sheet contains couple of PropertyPages with checkboxes all
over them), so when the users change the current state of any of those
checkboxes (regardless of page or sheet) I would like to be notified! Thanks
for helping me.