home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 2
/
Apprentice-Release2.iso
/
Source Code
/
Pascal
/
Libraries
/
DBL Pascal Library
/
SFGetFolder 6 ƒ
/
SFGetFolder_Test.p
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-06-01
|
249 b
|
21 lines
|
[
TEXT/PJMM
]
program SFGetFolder_Test;
uses
SFGetFolder;
var
where: Point;
dirID: Longint;
good: Boolean;
begin
ShowText;
repeat
SetPt(where, 50, 50);
good := SFGetFolder(where, dirID);
if good then
WriteLn(dirID);
until not good;
end.