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.
FOR nItem = 1 TO This.ListCount
IF This.Selected[m.nItem]
* The item is selected. Do something with it.
ENDIF
ENDFOR
cFirstFileStr = FILETOSTR('B1104221.dat')
cSecondFileStr = FILETOSTR('B1104281.dat')
* --- Concatenate Text Data From Both Files ---
cNewFileStr = cFirstFileStr + CHR(13) + CHR(10) + cSecondFileStr
* --- Write to Output File ---
STRTOFILE(cNewFileStr,<output file name>)
* --- Slight variation of above code for more files ---
cOutputFileStr = ''
SELECT MyFileList
SCAN FOR Selected
* --- Get This File Contents Into String ---
cThisFileStr = FILETOSTR(MyFileList.PathFile)
* --- Concatenate To Output String
cOutputFileStr = cOutputFileStr + cThisFileStr
ENDSCAN
* --- Output the total string to a file ---
cOutputFile = <fully pathed output file name>
=STRTOFILE(cOutputFileStr,cOutputFile)