Database
strucprg.asc
Associated article: Start Your Collection Now!
Tags: Database Tools
_STRUCTURED PROGRAMMING COLUMN_
by Jeff Duntemann
[LISTING ONE]
UNIT DirList; { By Jeff Duntemann; for DDJ 4/92 }
INTERFACE
USES Crt,DOS,Objects, { Standard Borland units }
When2; { From DDJ 1/91 }
TYPE
String40 = STRING[40];
PDirEntry = ^TDirEntry;
TDirEntry =
OBJECT(TObject)
Path : PathStr; { Predefined in Dos unit ...


