Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
nSz=250
cFile="C:\temp\rpt.TXT"
nHandle=FOPEN(cFile,"RW")
IF nHandle=0
? cFile+" could not be opened low level."
ELSE
? "Processing "+cFile+"..."
fEnd=FSEEK(nHandle,0,2) && this is EOF
xVal=FSEEK(nHandle,-1,1) && one char before EOF
fChr=FREAD(nHandle,1) && get character
IF fChr=CHR(26)
? "Found: CHR(26) at end of file."
fEnd=FSEEK(nHandle,-1,1) && one char before EOF
xVal=FWRITE(nHandle,"",0) && write nothing
ELSE
? "Not found: CHR(26) - No action taken."
ENDIF
xVal=FCLOSE(nHandle) && close truncates file after write of 0
? cFile+" has been closed."
ENDIF
RETURN