home *** CD-ROM | disk | FTP | other *** search
- // TODO: The property sheet attached to your project
- // via this function is not hooked up to any message
- // handler. In order to actually use the property sheet,
- // you will need to associate this function with a control
- // in your project such as a menu item or tool bar button.
-
- CPropertySheet propSheet($$VAL:SheetCaption$$);
- $$VAL:PageVars$$
-
- // This is where you would initialize information in the property
- // pages. We aren't doing anything for simplicity.
- $$VAL:AddPages$$
- $$VAL:WizardMode$$
-
- propSheet.DoModal();
-
- // This is where you would retrieve information from the property
- // pages if propSheet.DoModal() returned IDOK. We aren't doing
- // anything for simplicity.