home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast2.iso / wpj_mag / wpjv1n7.zip / HELLO.ZIP / HELLO.RC < prev    next >
Text File  |  1993-06-06  |  2KB  |  69 lines

  1. /* hello.rc */
  2. #include <windows.h>
  3. #include "hello.h"
  4.  
  5. WPJ  ICON WPJ.ICO
  6. GO   ICON GO.ICO
  7. SUNS ICON SUNS.ICO
  8.  
  9. Hello menu
  10. begin
  11.     popup "&File"
  12.     begin
  13.         menuitem "&New",              IDM_FILENEW
  14.         menuitem "&Open...",          IDM_FILEOPEN
  15.         menuitem "&Save",             IDM_FILESAVE
  16.         menuitem "Save &as...",       IDM_FILESAVEAS
  17.         menuitem separator
  18.         menuitem "&Print...",         IDM_FILEPRINT
  19.         menuitem "Print Pre&view...", IDM_FILEPRINTPREV
  20.         menuitem "P&rinter setup...", IDM_FILEPRINTSETUP
  21.         menuitem separator
  22.         menuitem "E&xit",             IDM_FILEEXIT
  23.     end
  24.  
  25.     popup "&Edit"
  26.     begin
  27.       menuitem "&Undo\tCtrl+Z",     IDM_EDITUNDO
  28.       menuitem "&Repeat",           IDM_EDITREPEAT
  29.       menuitem separator
  30.         menuitem "Cu&t\tCtrl+X",      IDM_EDITCUT
  31.         menuitem "&Copy\tCtrl+C",     IDM_EDITCOPY
  32.         menuitem "&Paste\tCtrl+V",    IDM_EDITPASTE
  33.       menuitem "Cl&ear",            IDM_EDITCLEAR
  34.       menuitem "Paste &Link..."     IDM_EDITPAST
  35.     end
  36.  
  37.     popup "&Sample"
  38.     begin
  39.         menuitem "&Dialog",           IDM_SAMPLEDLG
  40.       menuitem separator
  41.       menuitem "&Alternate..."      IDM_ALTERNATE
  42.     end
  43.  
  44.     popup "&Help"                    
  45.     begin
  46.         menuitem "&Index",            IDM_HELPINDX
  47.       menuitem "&Keyboard",         IDM_HELPKBD
  48.       menuitem "&Commands",         IDM_HELPCMDS
  49.       menuitem "&Procedures",       IDM_HELPPROCS
  50.       menuitem "&Using Help",       IDM_HELPUSING
  51.       menuitem separator
  52.       menuitem "&About Hello",      IDM_HELPABOUT
  53.     end
  54. end
  55.  
  56. Hello2 menu
  57. begin
  58.     popup "&Popup"
  59.     begin
  60.         menuitem "&One",          IDM_ALTONE, CHECKED
  61.         menuitem "&Two",          IDM_ALTTWO
  62.         menuitem "&Grayed",       IDM_ALTGRAY, GRAYED
  63.         menuitem "&UnGrayed",     IDM_ALTUNGRAY
  64.         menuitem "&Restore",      IDM_ALTRESTORE
  65.     end
  66. end
  67.  
  68. rcinclude Hello.dlg
  69.