home *** CD-ROM | disk | FTP | other *** search
/ Using Visual C++ 4 (Special Edition) / Using_Visual_C_4_Special_Edition_QUE_1996.iso / ch11 / readme.txt < prev    next >
Text File  |  1995-10-23  |  3KB  |  83 lines

  1. ========================================================================
  2.         OLE Control DLL : CALEN
  3. ========================================================================
  4.  
  5. ControlWizard has created this project for your CALEN OLE Control DLL,
  6. which contains 1 control.
  7.  
  8. This skeleton project not only demonstrates the basics of writing an OLE
  9. Control, but is also a starting point for writing the specific features
  10. of your control.
  11.  
  12. This file contains a summary of what you will find in each of the files
  13. that make up your CALEN OLE Control DLL.
  14.  
  15. Calen.mak
  16.     The Visual C++ project makefile for building your OLE Control.
  17.  
  18. Calen.h
  19.     This is the main include file for the OLE Control DLL.  It
  20.     includes other project-specific includes such as resource.h.
  21.  
  22. Calen.cpp
  23.     This is the main source file that contains code for DLL initialization,
  24.     termination and other bookkeeping.
  25.  
  26. Calen.rc
  27.     This is a listing of the Microsoft Windows resources that the project
  28.     uses.  This file can be directly edited with the Visual C++ resource
  29.     editor.
  30.  
  31. Calen.def
  32.     This file contains information about the OLE Control DLL that
  33.     must be provided to run with Microsoft Windows.
  34.  
  35. Calen.clw
  36.     This file contains information used by ClassWizard to edit existing
  37.     classes or add new classes.  ClassWizard also uses this file to store
  38.     information needed to generate and edit message maps and dialog data
  39.     maps and to generate prototype member functions.
  40.  
  41. Calen.odl
  42.     This file contains the Object Description Language source code for the
  43.     type library of your control.
  44.  
  45. /////////////////////////////////////////////////////////////////////////////
  46. Calen control:
  47.  
  48. CalenCtl.h
  49.     This file contains the declaration of the CCalenCtrl C++ class.
  50.  
  51. CalenCtl.cpp
  52.     This file contains the implementation of the CCalenCtrl C++ class.
  53.  
  54. CalenPpg.h
  55.     This file contains the declaration of the CCalenPropPage C++ class.
  56.  
  57. CalenPpg.cpp
  58.     This file contains the implementation of the CCalenPropPage C++ class.
  59.  
  60. CalenCtl.bmp
  61.     This file contains a bitmap that a container will use to represent the
  62.     CCalenCtrl control when it appears on a tool palette.  This bitmap
  63.     is included by the main resource file Calen.rc.
  64.  
  65. /////////////////////////////////////////////////////////////////////////////
  66. Other standard files:
  67.  
  68. stdafx.h, stdafx.cpp
  69.     These files are used to build a precompiled header (PCH) file
  70.     named stdafx.pch and a precompiled types (PCT) file named stdafx.obj.
  71.  
  72. resource.h
  73.     This is the standard header file, which defines new resource IDs.
  74.     The Visual C++ resource editor reads and updates this file.
  75.  
  76. /////////////////////////////////////////////////////////////////////////////
  77. Other notes:
  78.  
  79. ControlWizard uses "TODO:" to indicate parts of the source code you
  80. should add to or customize.
  81.  
  82. /////////////////////////////////////////////////////////////////////////////
  83.