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.
Include CSV to import data from a comma separated value file. A CSV file has field names as the first line in the file; the field names are ignored when the file is imported.
tFile='xxx.csv'
lcFile=FILETOSTR(tFile)
STRTOFILE(CHRTRAN(lcFile,";",","),"trans_"+tFile)
oExcel=createobject('excel.application')
oExcel.workbooks.opentext(FULLPATH("trans_"+tFile))
oExcel.visible=.t.
release oExcel