home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c500 / 4.ddi / GENERIC.WEX / GENERIC.RC < prev    next >
Encoding:
Text File  |  1992-05-28  |  639 b   |  23 lines

  1. #include "windows.h"
  2. #include "generic.h"
  3.  
  4. GenericIcon ICON generic.ico
  5. GenericMenu MENU
  6. BEGIN
  7.     POPUP "&Info"
  8.     BEGIN
  9.     MENUITEM "&Command line specified...", MENU_CMDSTR
  10.     MENUITEM "&About Generic...", MENU_ABOUT
  11.     END
  12. END
  13.  
  14. AboutBox DIALOG 22, 17, 144, 75
  15.         STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
  16.         CAPTION "About WATCOM Generic"
  17.         BEGIN
  18.             CTEXT "WATCOM Generic Program for Windows", -1, 0,  5, 144, 8
  19.             CTEXT "Version 1.0", -1, 0, 14, 144, 8
  20.             DEFPUSHBUTTON "OK", IDOK, 53, 59, 32, 14, WS_GROUP
  21.             ICON "GenericIcon", -1, 15,15,40,40
  22.         END
  23.