home *** CD-ROM | disk | FTP | other *** search
/ Computer Buyer 1998 October / dpcb1098.iso / Business / Maxim / MAX5 / data.z / ReadMe.txt < prev    next >
Text File  |  1998-05-15  |  5KB  |  125 lines

  1. **************************************
  2. * Add Appointment Wizard Sample Code *
  3. * RELEASE NOTES                      *
  4. * April 3, 1998                      *
  5. **************************************
  6.  
  7. *****************************************************
  8.  IMPORTANT - Please read this documentation carefully
  9. *****************************************************
  10.  
  11. These notes provide a brief explanation of the Add 
  12. Appointment Wizard Sample Code included in Maximizer 5.0. 
  13. This sample is written in VC++ however Maximizer also 
  14. supports wizards written in Visual Basic. 
  15.  
  16. For more valuable information on Sample API functions and 
  17. additional OLE Automation functions, please refer to the 
  18. Maximizer Web Site at http://www.maximizer.com/toolkit.htm
  19.  
  20. =================================================================
  21. CONTENTS:
  22. -> Add Appointment Wizard Sample Code - Overview
  23. -> Wizard Files
  24. =================================================================
  25.  
  26. *************************************************
  27. * Add Appointment Wizard Sample Code - Overview *
  28. *************************************************
  29.  
  30. The Add Appointment Wizard Sample Code is designed to aid 
  31. Maximizer Integrators and VARs in creating customized
  32. Maximizer solutions. It is intended only for use by people with
  33. a programming background.
  34.  
  35. The source code has been extensively commented to aid in 
  36. understanding the nature of these functions.
  37.  
  38. ** IMPORTANT NOTE: For optimum results, this code should be
  39. used in conjunction with a debug copy of Maximizer. A 
  40. debug copy of Maximizer will be made available to authorized 
  41. Maximizer Integrators and VARs only upon request. **
  42.  
  43. 1. This project will build a dll called "ApptWiz.dll" which
  44.    is an MFC extension dll.
  45.  
  46. 2. Once built and located in the <Maximizer Path>/Wizards 
  47.    subdirectory (current), it will display a wizard item in
  48.    the yellow Wizard menu dialog.
  49.  
  50. ****************
  51. * WIZARD FILES *
  52. ****************
  53.  
  54. Calendar.CPP, Calendar.h                                               
  55.     Calendar ctrl (group of day, month and year controls)
  56.     used on Page 2 (setting Appointment date).
  57.  
  58. DTCtrl.CPP, DTCtrl.h, Comctl32.lib, Commctrl.h                                               
  59.     New time windows common control (page 2). 
  60.     Time Common Ctrl needs Comctl32.lib and Commctrl.h file to 
  61.     be included.
  62.  
  63. MaxInterface.CPP, MaxInterface.h                                               
  64.     Maximizer OLE Automation classes Application and 
  65.     CurrentRecord created     from Maximizer Type Library 4.0 
  66.     (MaxWin.tlb).
  67.     Machine generated IDispatch wrapper class(es) created with 
  68.     ClassWizard
  69.  
  70. MaxWizard.CPP, MaxWizard.h                                               
  71.     Defines exported functions for the DLL(Wizard)
  72.     Defines the initialization routines (entry point for Dll) 
  73.     and exported functions for the DLL
  74.  
  75. OwnComboBox.CPP, OwnComboBox.h                                               
  76.     Ownerdrawn combo (bmp and text) box for displaying 
  77.     appointment types and associated bmps (page 3)
  78.  
  79. Transblt.CPP, Transblt.h                                               
  80.     Copies bmp with one transparent color (usually background)
  81.     same as BitBlt except with one transparent color
  82.  
  83. WizPages.CPP, WizPages.h                                               
  84.     Implementation    of 4 wizard property pages
  85.  
  86. WizPropertyPage.CPP, WizPropertyPage.h                                               
  87.     Base class for wizard property page
  88.  
  89. WizPropertySheet.CPP, WizPropertySheet.h                                               
  90.     Base class for wizard property sheet
  91.  
  92. ===============================================================
  93. Other standard files:
  94.  
  95. MaxWizard.def
  96.     Exports functions from the DLL.
  97.  
  98. MaxWizard.rc
  99.     This is a listing of all of the Windows resources that the
  100.     program uses.  It includes the icons, bitmaps, dialogs and 
  101.     strings that are stored in the RES subdirectory.  
  102.  
  103. Resource.h
  104.     This is the standard header file, which defines new resource 
  105.     IDs. Microsoft Developer Studio reads and updates this file.
  106.  
  107. StdAfx.h, StdAfx.cpp
  108.     These files are used to build a precompiled header (PCH) file
  109.     named MaxWizard.pch and a precompiled types file named 
  110.     StdAfx.obj.
  111.  
  112. ================================================================
  113.  
  114. *** END OF RELEASE NOTES ***
  115.  
  116. You may wish to keep a paper copy of these notes with your printed 
  117. Maximizer documentation. To print this document, choose Print from 
  118. the File menu.
  119.  
  120. The Maximizer Development Team
  121. 3-Apr-1998
  122.  
  123. (Third-party products mentioned in these notes are trademarks of 
  124. their respective owners and are used here for reference only.)
  125.