home *** CD-ROM | disk | FTP | other *** search
/ PC Press 1997 July / Sezamfile97_2.iso / windows / program / activex / axtsamp.exe / TSBRANCH.EXE / DLLCLIEN / DLLCLIEN.TXT < prev    next >
Text File  |  1997-01-05  |  3KB  |  67 lines

  1.  
  2. DLLCLIEN - Client of DLL Server
  3.  
  4.  
  5. SUMMARY
  6. =======
  7.  
  8. The DLLCLIEN sample presents a series of COM objects, several of which were
  9. introduced in the DLLSERVE code sample. These objects represent various
  10. types of cars, and they expose the following interfaces: ICar, IUtility,
  11. and ICruise. DLLCLIEN works in conjunction with the separate DLLSERVE.DLL,
  12. which creates COCar, COUtilityCar, and COCruiseCar COM objects.
  13.  
  14. DLLCLIEN.EXE creates its own COUtilityCruiseCar COM object, which is
  15. constructed by reusing the COCruiseCar COM object by aggregation and
  16. augmenting it with the IUtility interface. Because the COCruiseCar COM
  17. object class is also an aggregate--that is, it reuses an inner COCar
  18. object by aggregation--DLLCLIEN illustrates nested aggregation of COM
  19. objects.
  20.  
  21. For functional descriptions and a tutorial code tour of DLLCLIEN, see the
  22. Code Tour section in DLLCLIEN.HTM. For details on the external user
  23. operation of DLLCLIEN, see both the Usage and Operation sections in
  24. DLLCLIEN.HTM. To read DLLCLIEN.HTM, run TUTORIAL.EXE in the main tutorial
  25. directory and click the DLLCLIEN lesson in the table of lessons. You can
  26. also achieve the same thing by clicking the DLLCLIEN.HTM file after
  27. locating the main tutorial directory in the Windows Explorer. See also
  28. DLLSERVE.HTM in the main tutorial directory for more details on how
  29. DLLSERVE works and exposes its services to DLLCLIEN. You must build the
  30. DLLSERVE DLL before building DLLCLIEN. The makefile for DLLSERVE
  31. automatically registers that server in the system registry, so you must
  32. build DLLSERVE before attempting to run DLLCLIEN.
  33.  
  34. For details on setting up your system to build and test the code samples
  35. in this ActiveX Tutorial series, see TUTORIAL.HTM. The supplied MAKEFILE
  36. is Microsoft NMAKE-compatible. To create a debug build, issue the NMAKE
  37. command in the Command Prompt window.
  38.  
  39. Usage
  40. -----
  41.  
  42. DLLCLIEN is an application that you can execute directly from Windows in the
  43. normal manner or from the Command Prompt window. No command line parameters
  44. are recognized by DLLCLIEN.
  45.  
  46.  
  47. FILES
  48. =====
  49.  
  50. Files          Descriptiuon
  51.  
  52. DLLCLIEN.TXT   This file.
  53. MAKEFILE       The generic makefile for building the code sample
  54.                application of this tutorial lesson.
  55. DLLCLIEN.H     The include file for the DLLCLIEN application. Contains
  56.                class declarations, function prototypes, and resource
  57.                identifiers.
  58. DLLCLIEN.CPP   The main implementation file for DLLCLIEN.EXE. Has WinMain
  59.                and CMainWindow implementation, as well as the main menu
  60.                dispatching.
  61. DLLCLIEN.RC    The application resource definition file.
  62. DLLCLIEN.ICO   The application icon resource.
  63. UTCRUCAR.H     The class declaration for the COUtilityCruiseCar COM object.
  64. UTCRUCAR.CPP   Implementation file for the COUtilityCruiseCar COM object.
  65.                Also has the definition of the CreateUtilityCruiseCar
  66.                function.
  67.