| Home | All functions | Legacy functions | Categories |
Prototype: vuMailSelectCSV(*CSTRING OutText), SIGNED, PROC, PASCAL, RAW, NAME(‘vuMailSelectCSV’)
Selects an existing CSV file so later vuMailAppendCSV() calls append rows to that file.
| Value | Meaning | |—|—| | 1 | CSV file exists and is now selected. | | 0 | Failed. Common cases are blank path or file not found. Use vuMailLastError() for details. |
csvPath CSTRING(260)
rc LONG
csvPath = 'C:\Temp\mailout.csv'
rc = vuMailSelectCSV(csvPath)
IF rc = 0
MESSAGE('Select CSV failed: ' & vuMailLastError())
END
| Home | All functions | Legacy functions | Categories |