home *** CD-ROM | disk | FTP | other *** search
- Program README;
-
- {$V-,I- }
-
- {
- There is a one-percent chance that you are looking at this file, README.PAS
- when you really wanted to see the file: READ.ME
-
- If that's you, then you might as well continue looking at this file
- (it's short and simple). You can switch back to READ.ME later.
-
- Anyway... This is one of those README programs. Most of the work is done
- in the file DMX2 --via the procedures in DMX_LIST.PAS.
-
- If you don't have the DMX2 file, then refer to READ.ME for information on
- where to get it.
- }
-
-
- uses Dos, Crt, DMX_list;
-
- const ReadingFile = 'READ.ME';
-
- var i,j : word;
- OrigColors : byte;
- Key,ext : char;
- Fx : searchrec;
-
-
- { ─────────────────────────────────────────────────────────────────────── }
-
-
- Begin
- OrigColors := TextAttr; { save original screen colors }
- FindFirst (ReadingFile, AnyFile, Fx);
- If DosError = 0 then
- begin
- ViewTextWindow (ReadingFile, Yellow,$3E);
- TextAttr := OrigColors;
- ClrScr;
- end
- else
- begin
- writeln ('File ' + ReadingFile + ' not found.');
- end;
-
- writeln;
- End.