home *** CD-ROM | disk | FTP | other *** search
- (* ------------------------------------------------------ *)
- (* DEFINES.INC *)
- (* Include-Datei zur Definition aller Parameter, die zur *)
- (* Verwaltung individueller ISAM-Dateien benötigt werden *)
- (* (c) 1990 Karlheinz Büker & TOOLBOX *)
- (* ------------------------------------------------------ *)
-
- { DEMONSTRATION ADRESSVERWALTUNG }
- TYPE
- Key = STRING[20];
- DataType = RECORD
- Valid : BOOLEAN;
- OB : Key; { Zuname }
- Vorname : STRING[20];
- Plz : WORD;
- Ort : STRING[20];
- Str : STRING[20];
- END;
-
- CONST
- IgnoreCase : BOOLEAN = TRUE;
- ExpandOB : BOOLEAN = TRUE;
- DoubleAllowed : BOOLEAN = TRUE;
- FileName : STRING[8] = 'ADRESSEN';