home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / SAMPLES / ICLUI / SIMPLE / ASIMPLE.RC < prev    next >
Text File  |  1993-05-12  |  360b  |  13 lines

  1. #define WND_MAIN         5000           //Main Window Id
  2. #define MI_CLOSE         5001           //Command Id
  3.  
  4. STRINGTABLE
  5.   BEGIN
  6.     WND_MAIN,   "Simple Application"    //Title bar text (main ID)
  7.   END
  8.  
  9. MENU WND_MAIN                           //Main Window Menu (WND_MAIN)
  10.   BEGIN
  11.     MENUITEM "~Close",   MI_CLOSE       //Close Menu Item
  12.   END
  13.