IntControl (29, p1, 0, 0, 0)
Changes the default file delimiter.
p1 New delimiter
We have added the ability to change the file delimiter to a character of your own choosing, using the new IntControl (29,p1,0,0,0).
IntControl(29, " ", 0, 0, 0) ;makes file delimiter a SPACE
Conversely, if you want to restore the TAB delimiter, you can use:
IntControl(29, @TAB, 0, 0, 0) ;restores default TAB delimiter
The first parameter for IntControl 29 is the new file delimiter you want to use, and must be a single character. The return value of the function is the previous file delimiter character. If you specify an empty string ("") as the first parameter, the function will return the current file delimiter character but the file delimiter will not be changed.