| Unit RkAddr |
========================================================================= RkAddr Unit This unit implements the RkAddress component which is comprised of the the following edit fields: First Name, Last Name, Street, City, and ZIP. The State field is actually a combo box which is populated with the 50 states including the District of Columbia. The edit fields are data- aware, and thus this component can be hooked up to a DataSource. Developing Custom Delphi 3 Components Copyright © 1995-1997 by Ray Konopka =========================================================================} {$I DCDC.INC
| Classes |
| Functions |
| Types |
TEditChangeEvent
TEditField
TLabelPosition
| Constants |
| Variables |
| Functions |
| Types |
TEditChangeEvent = procedure(Field: TEditField; Text: string) of object
TEditField = ( efFirstName, efLastName, efStreet, efCity, efZIP );
TLabelPosition = ( lpOnLeft, lpOnTop );
| Constants |
| Variables |