home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / OS2BAS.ZIP / CAL.RC < prev    next >
Text File  |  1989-07-28  |  840b  |  28 lines

  1. /************************************************************
  2. *   File Name:   CAL.RC
  3. *
  4. *   Description: This is the resource file for the final PM
  5. *                version of CAL.BAS. It defines a dialog and
  6. *                menu for entering a date.
  7. ************************************************************/
  8.  
  9. #define WS_SAVEBITS         0x04000000L
  10. #define WS_CLIPSIBLINGS     0x10000000L
  11. #define ES_MARGIN           0x00000008L
  12. DLGTEMPLATE 1
  13. BEGIN
  14.     DIALOG "", 1, 0, 0, 84, 52, WS_SAVEBITS | WS_CLIPSIBLINGS
  15.     BEGIN
  16.         LTEXT "Month", 256, 10, 20, 27, 9
  17.         LTEXT "Year", 257, 10, 37, 23, 8
  18.         ENTRYFIELD "", 1, 50, 37, 24, 9, ES_MARGIN
  19.         ENTRYFIELD "", 2, 50, 20, 24, 9, ES_MARGIN
  20.         DEFPUSHBUTTON "OK", 3, 22, 5, 31, 9
  21.     END
  22. END
  23.  
  24. MENU 2
  25. BEGIN
  26.     MENUITEM "New ~Date",1
  27. END
  28.