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

  1. /*
  2.  *    PALANIM.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 "palanim.h"
  15.  
  16. AppIcon  ICON    palanim.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 Palette Animation App"                -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 "&About..."         , MENU_ABOUT
  34.             MENUITEM "E&xit"             , MENU_EXIT
  35.         end
  36.     POPUP "&Wash"
  37.         begin
  38.             MENUITEM "&Red", MENU_RED
  39.             MENUITEM "&Green", MENU_GREEN
  40.             MENUITEM "&Blue", MENU_BLUE
  41.             MENUITEM SEPARATOR
  42.             MENUITEM "Include &Static Colors", MENU_STATIC
  43.         end
  44.     POPUP "&Animation"
  45.         begin
  46.             MENUITEM "&Palette", MENU_PALETTE
  47.             MENUITEM "&Curtain", MENU_CURTAIN
  48.         end
  49. end
  50. 
  51.