home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / com / activexcontrol / basectl / card / card.rc < prev    next >
Text File  |  1997-10-05  |  5KB  |  149 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Card.Rc
  3. /////////////////////////////////////////////////////////////////////////////
  4. // Copyright 1995 - 1997 Microsoft Corporation.  All Rights Reserved.
  5. //
  6. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF 
  7. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO 
  8. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A 
  9. // PARTICULAR PURPOSE.
  10. /////////////////////////////////////////////////////////////////////////////
  11. //
  12. // contains the resources for our DLL, including the TypeLib, error strings,
  13. // and versioning information.
  14. //
  15. #include "Resource.H"
  16. #include "Windows.H"
  17.  
  18. #define IDC_STATIC -1
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. //
  22. // Bitmap and Icons that are not localized
  23. //
  24. RESID_TOOLBOX_BITMAP    BITMAP DISCARDABLE "res/icon.Bmp"
  25.  
  26. /////////////////////////////////////////////////////////////////////////////
  27. //
  28. // Our Non-Localized Type Library
  29. //
  30. 1 TYPELIB "card.TLB"
  31.  
  32.  
  33. /////////////////////////////////////////////////////////////////////////////
  34. //
  35. // Icon
  36. //
  37.  
  38. /////////////////////////////////////////////////////////////////////////////
  39. //
  40. // Bitmap
  41. //
  42.  
  43. IDB_FACES        BITMAP  DISCARDABLE    "res/faces.bmp"
  44. IDB_SYMS        BITMAP  DISCARDABLE    "res/syms.bmp"
  45. IDB_JOKER        BITMAP  DISCARDABLE     "res/joker.bmp"
  46.  
  47. IDB_BACK1        BITMAP  DISCARDABLE    "res/back1.bmp"
  48. IDB_BACK2        BITMAP  DISCARDABLE    "res/back2.bmp"
  49. IDB_BACK3        BITMAP  DISCARDABLE    "res/back3.bmp"
  50. IDB_BACK4        BITMAP  DISCARDABLE    "res/back4.bmp"
  51. IDB_BACK5        BITMAP  DISCARDABLE    "res/back5.bmp"
  52. IDB_BACK6        BITMAP  DISCARDABLE    "res/back6.bmp"
  53. IDB_BACK7        BITMAP  DISCARDABLE    "res/back7.bmp"
  54. IDB_BACK8        BITMAP  DISCARDABLE    "res/back8.bmp"
  55. IDB_BACK9        BITMAP  DISCARDABLE    "res/back9.bmp"
  56. IDB_BACK10        BITMAP  DISCARDABLE    "res/back10.bmp"
  57. IDB_BACK11        BITMAP  DISCARDABLE    "res/back11.bmp"
  58. IDB_BACK12        BITMAP  DISCARDABLE    "res/back12.bmp"
  59.  
  60. /////////////////////////////////////////////////////////////////////////////
  61. // EVERYTHING FROM HERE UNTIL THE VERSION RESOURCES IS LOCALIZABLE         //
  62. /////////////////////////////////////////////////////////////////////////////
  63.  
  64.  
  65.  
  66.  
  67.  
  68. /////////////////////////////////////////////////////////////////////////////
  69. //
  70. // String tables with Exception Information, etc.
  71. //
  72. STRINGTABLE DISCARDABLE
  73. BEGIN
  74.     IDS_PROPERTIES,                     "Card Properties"
  75.     IDS_CARD_GENERALPAGETITLE,        "General Properties"
  76.     IDS_CARD_GENERALDOCSTRING,        "General properties for the Card control"
  77. END
  78.  
  79. /////////////////////////////////////////////////////////////////////////////
  80. //
  81. // Property Page Dialog
  82. //
  83.  
  84. IDD_PROPPAGE_CARDGENERAL DIALOG DISCARDABLE  0, 0, 195, 127
  85. STYLE DS_3DLOOK | WS_CHILD
  86. FONT 8, "MS Sans Serif"
  87. BEGIN
  88.     LTEXT           "Suite:",IDC_STATIC,20,25,32,20
  89.     LTEXT           "Number:",IDC_STATIC,20,44,32,20
  90.     LTEXT           "Alignment:",IDC_STATIC,20,79,32,20
  91.     COMBOBOX        IDC_SUITE,57,23,140,80,CBS_DROPDOWNLIST |
  92.                     WS_VSCROLL | WS_TABSTOP
  93.     COMBOBOX        IDC_NUMBER,57,42,140,80,CBS_DROPDOWNLIST |
  94.                     WS_VSCROLL | WS_TABSTOP
  95.     COMBOBOX        IDC_ALIGNMENT,57,76,140,80,CBS_DROPDOWNLIST |
  96.                     WS_VSCROLL | WS_TABSTOP
  97.     CONTROL         "Inverted",IDC_INVERT,"Button",BS_AUTOCHECKBOX | 
  98.                     WS_TABSTOP,20,92,56,18
  99. END
  100.  
  101. /////////////////////////////////////////////////////////////////////////////
  102. // Version Information
  103. /////////////////////////////////////////////////////////////////////////////
  104. //
  105. #include "dwinvers.h"
  106. #include <winver.h>
  107.  
  108. VS_VERSION_INFO VERSIONINFO
  109.  
  110. FILEVERSION    01,00,vusVersNumf2,vusVersNuml2 //<----- This is used by setup!
  111. PRODUCTVERSION    01,00,vusVersNumf2,vusVersNuml2
  112.  
  113.  
  114. FILEFLAGSMASK    VS_FFI_FILEFLAGSMASK
  115. #ifdef DEBUG
  116. FILEFLAGS    VS_FF_DEBUG
  117. #else
  118. FILEFLAGS    0L
  119. #endif
  120.  
  121. FILEOS        VOS_NT_WINDOWS32
  122.  
  123. FILETYPE    VFT_DLL
  124. FILESUBTYPE    0
  125. {
  126.     BLOCK "StringFileInfo"
  127.     {
  128.         BLOCK "040904B0" // Language and character set identifiers.
  129.         {
  130.             VALUE "CompanyName",     "Microsoft Corporation\0"
  131.             VALUE "FileDescription", "Card Control"
  132.             VALUE "FileVersion",     vszVersNumAll
  133.             VALUE "InternalName",    "Card.Ocx\0"
  134.             VALUE "LegalCopyright",  vszCopyright
  135.             VALUE "LegalTrademarks", "\0"
  136.             VALUE "ProductName",     "Card Object Library\0"
  137.             VALUE "ProductVersion",  vszVersNumAll
  138.             VALUE "OLESelfRegister", "\0"
  139.         }
  140.     }
  141.     BLOCK "VarFileInfo"
  142.     {
  143.         VALUE "Translation" ,0x409, 0x4b0
  144.     }
  145. }
  146.  
  147.  
  148.  
  149.