home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winui / owncombo / owncombo.rc < prev    next >
Encoding:
Text File  |  1997-10-05  |  1.2 KB  |  37 lines

  1.  
  2. //-----------------------------------------------------------------------------
  3. // This is a part of the Microsoft Source Code Samples. 
  4. // Copyright (C) 1993 - 1997 Microsoft Corp.
  5. // All rights reserved. 
  6. //  
  7. // This source code is only intended as a supplement to 
  8. // Microsoft Development Tools and/or WinHelp documentation.
  9. // See these sources for detailed information regarding the 
  10. // Microsoft samples programs.
  11. //-----------------------------------------------------------------------------
  12.  
  13. #include "windows.h"
  14. #include "owncombo.h"
  15. #include "owncombo.dlg"
  16.  
  17. owncombo ICON owncombo.ico
  18.  
  19. OwnComboMenu MENU
  20. BEGIN
  21.   POPUP         "&File"
  22.     BEGIN
  23.       MENUITEM  "&Exit",               IDM_EXIT
  24.       MENUITEM  SEPARATOR
  25.       MENUITEM  "&About OwnCombo...",  IDM_ABOUT
  26.     END
  27.  
  28.   POPUP         "E&xamples"
  29.     BEGIN
  30.       MENUITEM  "Owner Draw &List Box",                     IDM_LISTBOX
  31.       MENUITEM  "Owner Draw &Multiple Selection List Box",  IDM_MULTILISTBOX
  32.       MENUITEM  SEPARATOR
  33.       MENUITEM  "Drop Down &Combo Box",                     IDM_COMBOBOX
  34.       MENUITEM  "Owner Draw Combo &Box",                    IDM_OWNERCOMBOBOX
  35.     END
  36. END
  37.