home *** CD-ROM | disk | FTP | other *** search
- {
- --------------------------------------------------------------------------
- F i l e I n f o r m a t i o n
-
- * DESCRIPTION
- File used with FM.PAS.
-
- * ASSOCIATED FILES
- FM.PAS
- FM.DOC
- FM.EXE
- FM.TPU
- FMFILE.PAS
- FMINPUT.PAS
- FMSCREEN.PAS
- FMUTEST.EXE
- FMUTEST.PAS
- FMVIEW.PAS
-
- ==========================================================================
- }
- {$DEFINE MemLimited} { Program: FMUTest.PAS }
- { Keep or Comment out MemLimited definition } { Author: Jim Zwick }
- { to match unit configuration } { Version: 1.0 }
- { Date: 03-04-88 }
- {$IFDEF MemLimited} { Purpose: Test FM.PAS }
- {$M 8192,0,65536} { when configured }
- {$ENDIF} { as a Unit. }
-
- PROGRAM FMUnitTest;
- USES
- FMInput, { FM.PAS must be configured as a unit or error will }
- FM; { occur pointing to PROGRAM heading in FM.PAS. }
- CONST
- F2 = #188;
- VAR
- Reply : CHAR;
- BEGIN
- WRITE('Press <F2> to pop up File Manager, <Esc> to Exit ');
- REPEAT
- Reply := GetKey(#0+#27, FALSE);
- IF (Reply = F2) THEN FileManager;
- UNTIL (Reply = #27);
- END.
-