home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / smart21b.zip / SAMPLES / WIN32OS2 / SAMPLE.RC < prev    next >
Text File  |  1994-04-20  |  706b  |  34 lines

  1. #include "windows.h"
  2. #include "sample.h"
  3.  
  4. SAMPLECURSOR CURSOR sample.cur
  5. SAMPLEICON   ICON   sample.ico
  6.  
  7. STRINGTABLE
  8. BEGIN
  9.   IDS_TITLE,       "Sample Title string"
  10.   IDS_MNEMONIC,    "This string has a &mnemonic"
  11.   IDS_CHAR,        "This string has special chars\n\r"
  12. END
  13.  
  14. IDACCEL ACCELERATORS
  15. BEGIN
  16.   VK_DELETE, IDM_DELETE, VIRTKEY
  17.   "r",       IDM_REMOVE
  18.   VK_TAB,    200,        ALT, SHIFT, VIRTKEY
  19.   0x42,      201,        ASCII
  20. END
  21.  
  22. IDMENU MENU
  23. BEGIN
  24.   POPUP "&File"
  25.     BEGIN
  26.     MENUITEM "&Open...",           IDM_OPEN
  27.     MENUITEM "&Save As...",        IDM_SAVE
  28.     MENUITEM SEPARATOR
  29.     MENUITEM "E&xit",              IDM_EXIT
  30.     END
  31. END
  32.  
  33. rcinclude "sample.dlg"
  34.