home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM User 1995 January / CDuser6Jan95.iso / WING / TIMEWING.RC_ / TIMEWING.RC
Text File  |  1994-06-24  |  1KB  |  49 lines

  1. /*
  2.  *    TIMEWING.RC
  3.  *
  4.  *    (C) Copyright Microsoft Corp. 1994.  All rights reserved.
  5.  *
  6.  *    You have a royalty-free right to use, modify, reproduce and 
  7.  *    distribute the Sample Files (and/or any modified version) in 
  8.  *    any way you find useful, provided that you agree that 
  9.  *    Microsoft has no warranty obligations or liability for any 
  10.  *    Sample Application Files which are modified. 
  11.  */
  12.  
  13. #include <windows.h>
  14. #include "timewing.h"
  15.  
  16. AppIcon  ICON    timewing.ico
  17.  
  18. AppAbout DIALOG 22, 17, 144, 75
  19. STYLE WS_POPUP | WS_DLGFRAME
  20. BEGIN
  21.     CTEXT "Microsoft Windows"                   -1, 37,  5, 60, 8
  22.     CTEXT "WinG Timing Application"             -1,  0, 14, 144, 8
  23.     CTEXT "Version 1.00"                        -1, 38, 34, 64, 8
  24.     CTEXT "Copyright 1994, Microsoft Corp."   -1,  5, 47,132, 9
  25.     ICON  "AppIcon"                             -1,  9, 23,  0, 0
  26.     DEFPUSHBUTTON "Ok"                        IDOK, 53, 59, 32, 14, WS_GROUP
  27. END
  28.  
  29. AppMenu menu
  30. begin
  31.     POPUP "&File"
  32.         begin
  33.             MENUITEM "&Open Bitmap..."          , MENU_OPEN
  34.             MENUITEM SEPARATOR
  35.             MENUITEM "&About..."         , MENU_ABOUT
  36.             MENUITEM "E&xit"             , MENU_EXIT
  37.         end
  38.     POPUP "&Stretch"
  39.     begin
  40.         MENUITEM "&1:1", MENU_1TO1
  41.         MENUITEM "1:&2", MENU_1TO2
  42.     end
  43.     MENUITEM "Time &All", MENU_TIMEALL
  44.     POPUP "&Time"
  45.     BEGIN
  46.         MENUITEM "", MENU_TIME
  47.     END
  48. end
  49.