home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / common / msdev98 / bin / ide / devgal.pkg / TEMPLATE / 22349 < prev    next >
Encoding:
Text File  |  1998-06-18  |  713 b   |  19 lines

  1.     // TODO: The property sheet attached to your project
  2.     // via this function is not hooked up to any message
  3.     // handler.  In order to actually use the property sheet,
  4.     // you will need to associate this function with a control
  5.     // in your project such as a menu item or tool bar button.
  6.  
  7.     CPropertySheet propSheet($$VAL:SheetCaption$$);
  8. $$VAL:PageVars$$
  9.  
  10.     // This is where you would initialize information in the property
  11.     // pages.  We aren't doing anything for simplicity.
  12. $$VAL:AddPages$$
  13. $$VAL:WizardMode$$
  14.  
  15.     propSheet.DoModal();
  16.  
  17.     // This is where you would retrieve information from the property
  18.     // pages if propSheet.DoModal() returned IDOK.  We aren't doing
  19.     // anything for simplicity.