home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue28 / calcomp / CALCOMP.ZIP / CALCOMP.TXT < prev    next >
Encoding:
Text File  |  1997-09-12  |  2.9 KB  |  77 lines

  1. *******************************************************
  2. Author: Bruno Fierens
  3.         TMS Software
  4.         J. Jordaens str. 11
  5.         B8510 Marke
  6.         Belgium
  7.         Fax : +32 56 963535
  8.         E-mail: bruno.fierens@ven.be
  9.         http://www.ven.be/freestyle/delphi.htm
  10. *******************************************************
  11.  
  12. TCalComp (revision 1.5) :
  13.         Calcomp is a Microsoft Money style popup calendar control.
  14.         It provides easy selection of dates, using a display of all
  15.         days of the selected month, or all months of the selected
  16.         year. Delphi 1.0, 2.0 and 3.0 components are included.
  17.  
  18. Usage :
  19.         This component is freeware for non-commercial applications.
  20.         License is equivalent to buying source code, and is available
  21.         for $40. Licensed users get source code updates for all 1.x
  22.         versions. Send cheque or cash for $40 to address above and
  23.         source code will be sent by email immediately upon receipt.
  24.         
  25. History:
  26.         12/9/97 : Added C++Builder support
  27.                   Added property to set date from which week counting must start
  28.                   to be able to use week numbers for fiscal years
  29.         31/8/97 : Added color property for weekend days
  30.                   Added read-only week property
  31.         13/7/97 : Added new Delphi 3 support
  32.         25/6/97 : Added better keyboard support : up/down/left/right
  33.                   arrows change day resp. +7/-7 -1/+1 day. Spacebar
  34.                   toggles between day & month mode. PgUp and PgDn
  35.                   changes month resp. +1/-1 month.
  36.         25/5/97 : Added startofweek property and color properties
  37.                   for background, text, selected text and invers text
  38.         25/4/97 : fix for using component in smtop mode and
  39.                   unwanted incrementing months
  40.         18/4/97 : fix error when clicking on some specific regions
  41.                   for 32 bit version
  42.  
  43.  
  44.  
  45. Known issues:
  46.         There are currently no known problems with CalComp.
  47.         Let me know if problems show up, or if you wish other
  48.         features for this component.
  49.  
  50. Installation:
  51.  
  52.         1. In the delphi menu select:
  53.                Component >  Install > Add > Browse
  54.  
  55.         2. Select calcomp.dcu and accept.
  56.  
  57. Example use:
  58.  
  59.         1. Drop a TCalcomp component in the main form.
  60.         2. Drop a TButton component in the main form.
  61.         3. In the TButton click event handler, add following code
  62.  
  63.              TCalcomp1.Execute;
  64.  
  65.            The execute method returns true if a correct date was
  66.            selected, false if selection was cancelled.
  67.  
  68.         4. Access the day,month,year properties before and after
  69.            the execute method, to change other data according to
  70.            the popup calendar selection.
  71.         5. For placement of the popup calendar, choose the AlignControl
  72.            to let the popup calendar automatically align to another
  73.            control.
  74.  
  75.  
  76.  
  77.