home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / inole2 / chap24 / polyline / polyline.rc < prev    next >
Text File  |  1995-05-03  |  4KB  |  114 lines

  1. /*
  2.  * POLYLINE.RC
  3.  * Polyline Component Chapter 24
  4.  *
  5.  * Resources for the Polyline object (just the version information)
  6.  *
  7.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  8.  *
  9.  * Kraig Brockschmidt, Microsoft
  10.  * Internet  :  kraigb@microsoft.com
  11.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  12.  */
  13.  
  14.  
  15. #include <windows.h>
  16.  
  17. #ifdef WIN32
  18. #include <winver.h>
  19. #else
  20. #include <ver.h>
  21. #endif
  22.  
  23. #include "resource.h"
  24.  
  25. //This is the default for iconic representations.
  26. IDR_ICON        ICON    polyline.ico
  27.  
  28.  
  29. //This dialog is used to edit the Polyline
  30. IDD_EDITDIALOG DIALOG 6, 18, 258, 152
  31. STYLE WS_POPUP | WS_CAPTION | WS_SYSMENU
  32. CAPTION "Polyline"
  33. FONT 8, "MS Sans Serif"
  34. BEGIN
  35.     CONTROL         "", ID_POLYLINERECT, "Static", SS_BLACKFRAME
  36.                         , 8, 12, 134, 132
  37.     PUSHBUTTON      "&Close", IDOK, 178, 6, 56, 14
  38.     PUSHBUTTON      "&Undo", ID_UNDO, 178, 24, 56, 14
  39.     PUSHBUTTON      "&Background...", ID_COLORBACK, 178, 54, 56, 14
  40.     PUSHBUTTON      "&Line...", ID_COLORLINE, 178, 72, 56, 14
  41.     GROUPBOX        "Colors", ID_GROUPCOLORS, 158, 42, 94, 48
  42.     GROUPBOX        "Figure", ID_GROUPFIGURE, 2, 0, 146, 148
  43.     GROUPBOX        "Line Styles", ID_GROUPSTYLES, 158, 94, 94, 54
  44.     CONTROL         "&Solid", ID_LINESOLID, "Button",
  45.                     BS_AUTORADIOBUTTON | WS_GROUP, 166, 106, 32, 10
  46.     CONTROL         "&Dash", ID_LINEDASH, "Button"
  47.                         , BS_AUTORADIOBUTTON, 216
  48.                         , 106, 32, 10
  49.     CONTROL         "Da&sh-Dot-Dot", ID_LINEDASHDOTDOT, "Button"
  50.                         , BS_AUTORADIOBUTTON, 166, 134, 80, 10
  51.     CONTROL         "D&ot", ID_LINEDOT, "Button"
  52.                         , BS_AUTORADIOBUTTON, 216
  53.                         , 120, 32, 10
  54.     CONTROL         "D&ash-Dot", ID_LINEDASHDOT, "Button"
  55.                         , BS_AUTORADIOBUTTON, 166, 120, 48, 10
  56. END
  57.  
  58.  
  59. STRINGTABLE
  60.     BEGIN
  61.      IDS_STORAGEFORMAT,      "Polyline Figure"
  62.      IDS_USERTYPE,           "Polyline Figure"
  63.      IDS_CLOSECAPTION,       "Polyline"
  64.      IDS_CLOSEPROMPT,        "Object has changed.  Do you wish to update it?"
  65.     END
  66.  
  67.  
  68. VS_VERSION_INFO VERSIONINFO
  69.  FILEVERSION        1,0,0,0
  70.  PRODUCTVERSION     1,0,0,0
  71.  FILEFLAGSMASK      VS_FFI_FILEFLAGSMASK
  72. #ifndef DEBUG
  73.  FILEFLAGS          0
  74. #else
  75.  FILEFLAGS          VS_FF_DEBUG | VS_FF_PRERELEASE
  76. #endif
  77. #ifdef WIN32
  78.  FILEOS             VOS_NT_WINDOWS32
  79. #else
  80.  FILEOS             VOS_DOS_WINDOWS16
  81. #endif
  82.  FILETYPE           VFT_DLL
  83.  FILESUBTYPE        VFT_UNKNOWN
  84.  
  85.  BEGIN
  86.    BLOCK "StringFileInfo"
  87.     BEGIN
  88.     #ifdef UNICODE
  89.      BLOCK "040904B0" // Lang=US English, CharSet=Unicode
  90.     #else
  91.      BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilingual
  92.     #endif
  93.       BEGIN
  94.        VALUE "CompanyName",     "Microsoft Corporation\0", "\0"
  95.        VALUE "FileDescription", "Polyline Object 1.0", "\0"
  96.        VALUE "FileVersion",     "1.00\0", "\0"
  97.        VALUE "InternalName",    "POLY24.DLL", "\0"
  98.        VALUE "LegalCopyright",  "Copyright \251 1993-1995 Microsoft Corp.", "\0"
  99.        VALUE "OriginalFilename","POLY24.DLL", "\0"
  100.        VALUE "ProductName",     "Polyline Object 1.0", "\0"
  101.        VALUE "ProductVersion",  "1.00\0"
  102.       END
  103.    END
  104.  
  105.    BLOCK "VarFileInfo"
  106.     BEGIN 
  107.     #ifdef UNICODE
  108.      VALUE "Translation", 0x409, 1200  //English (0x409), Unicode (1200)
  109.     #else
  110.      VALUE "Translation", 0x409, 1252  //English (0x409), ANSI (1252)
  111.     #endif
  112.     END
  113.  END
  114.