home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Press 1997 July
/
Sezamfile97_1.iso
/
msdos
/
clipper
/
c50xp300.a01
/
XPNGDEMO.ARJ
/
NGDIR.PRG
< prev
next >
Wrap
Text File
|
1992-10-01
|
837b
|
26 lines
* ------------------------------------------------------------------------
* File........: NGDIR.PRG
* Author......: Pepijn Smits
* Copyright...: (c)1992, by "Softwarebureau Pepijn Smits"
* Date........: August 1992
* Compile.....: Clipper 5.01, Compile with /m /l /n /v
* Notes.......: Norton Guides Directory: Dir of .NG files in Cur. Dir.
* Norton Guide Files in the Current Directory.
* ------------------------------------------------------------------------
#include "SIMPLEIO.CH"
Procedure Main(cMask)
Local a := NGdir(cMask)
?? "Norton Guides Directory v1.0. Written by Pepijn Smits using EXPAND.LIB."
?
if Len(a)==0
? "No Norton Guides present in current directory"
else
aEval(a,{|e|OutStd(chr(13)+chr(10)+PadR(e[1],14)+e[2])})
?
? Alltrim(Str(len(a),5))+" Norton Guide File(s)"
end
?
Quit
Return