Quote:
Originally Posted by Larry A Mill Sr
Somehow I must be able to discern which editboxes was used. Also the Property Sheet controls the buttons [back], [next], [finish] not the individual pages. The property Sheet knows nothing of the editboxes; nor does the pages know anything about the [back], [next], [finish] buttons.
|
From what you have said so far, I hope that you are using Wizard-type property pages. If not, set the Wizard mode by using "CPropertySheet::SetWizardMode()". Then u can track the click events on "Next", "back" and "Finish" by easily overriding the functions "CPropertyPage::OnWizardBack()", "CPropertyPage::OnWizardNext()" and "CPropertyPage::OnWizardFinish()". Here, u can validate the edit boxes. I hope that this is what you want.