home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / printq / helloq2 / hello.rc < prev    next >
Text File  |  1993-08-19  |  694b  |  27 lines

  1. /* hello.rc: resource script file for Hello queue/2 */
  2. /* Version 1.1, (C) Peter Wansch, 1993              */
  3. /* created: 93-5-28                                 */
  4. /* modified: 93-8-16                                */
  5.  
  6. #include <os2.h>
  7. #include "hello.h"
  8.  
  9. ICON WD_MAIN PRELOAD hello.ico
  10.  
  11. ACCELTABLE WD_MAIN PRELOAD
  12. BEGIN
  13.   VK_F1, MI_INFO, VIRTUALKEY
  14. END
  15.  
  16. MENU WD_MAIN PRELOAD
  17. BEGIN
  18.   SUBMENU "~Options", SM_OPTIONS
  19.   BEGIN
  20.     MENUITEM "Printer ~setup...",           MI_SETUP, MIS_TEXT
  21.     MENUITEM "~Print",                      MI_PRINT, MIS_TEXT
  22.     MENUITEM SEPARATOR
  23.     MENUITEM "Product ~information...\tF1", MI_INFO,  MIS_TEXT
  24.   END
  25. END
  26. rcinclude hello.dlg
  27.