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.
#DEFINE CRLF CHR(13)+CHR(10)
SET DATE TO YMD
SET CENTURY ON
STRTOFILE('','D:\TEMP\DeleteMe.txt',.F.)
STRTOFILE('2004-01-25'+CHR(9)+'Start Date '+CRLF, ;
'D:\TEMP\DeleteMe.txt',.T.)
STRTOFILE('2004-02-12'+CHR(9)+'Revisit Date'+CRLF, ;
'D:\TEMP\DeleteMe.txt',.T.)
STRTOFILE('2004-03-28'+CHR(9)+'End Date '+CRLF, ;
'D:\TEMP\DeleteMe.txt',.T.)
CREATE CURSOR tmp (theDate D(8), comments C(25))
APPEND FROM ('D:\TEMP\DeleteMe.txt') TYPE DELIMITED WITH TAB
&& put your text file's type here;
&& it won't work correctly with incorrect type.
BROWSE LAST