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

  1. /*
  2.  *    DOGGIE.RC
  3.  *
  4.  *    (C) Copyright Microsoft Corp. 1993.  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 "doggie.h"
  15.  
  16. AppIcon  ICON    doggie.ico
  17.  
  18. Doggie BITMAP doggie2.bmp
  19.  
  20. AppAbout DIALOG 22, 17, 144, 75
  21. STYLE WS_POPUP | WS_DLGFRAME
  22. BEGIN
  23.     CTEXT "Microsoft Windows"                   -1, 37,  5, 60, 8
  24.     CTEXT "WinG Sample Application"             -1,  0, 14, 144, 8
  25.     CTEXT "Version 1.00"                        -1, 38, 34, 64, 8
  26.     CTEXT "Copyright 1993, Microsoft Corp."     -1,  5, 47,132, 9
  27.     ICON  "AppIcon"                             -1,  9, 23,  0, 0
  28.     DEFPUSHBUTTON "Ok"                        IDOK, 53, 59, 32, 14, WS_GROUP
  29. END
  30.  
  31. AppMenu menu
  32. begin
  33.     POPUP "&File"
  34.         begin
  35.             MENUITEM "&About..."         , MENU_ABOUT
  36.             MENUITEM "E&xit"             , MENU_EXIT
  37.         end
  38. end
  39.