home *** CD-ROM | disk | FTP | other *** search
/ distrib.akp.su/Programming/Vb-6+Rus/ / distrib.akp.su.tar / distrib.akp.su / Programming / Vb-6+Rus / COMMON / MSDEV98 / BIN / IDE / PROPSHT.DLL / TEMPLATE / 22349 < prev   
Text File  |  1998-06-18  |  713b  |  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.