home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Education
/
collectionofeducationcarat1997.iso
/
COMPUSCI
/
TOT11.ZIP
/
TOTDEM11.ZIP
/
DEMDR5.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-02-11
|
439b
|
24 lines
program DemoDirFive;
{demdr5 - the directory dialog box}
Uses DOS, CRT,
totFAST, totDir, totIO1;
Var
DirWin: DirWinObj;
Result: tAction;
begin
Screen.Clear(white,'░'); {paint the screen}
with DirWin do
begin
Init;
Result := Go;
if Result = Finished then
writeln('You chose file: ',GetChosenFile)
else
writeln('You escaped!');
Done;
end;
end.