docs

Home All functions Legacy functions Categories

vuMailCreateCSV(xCsvFilePath)

Purpose

Creates (or truncates) the target CSV file and stores it as the selected CSV used by vuMailAppendCSV().

Parameters

Return value / error codes

Example (Clarion)

MAP
  MODULE('vuMail.dll')
    vuMailCreateCSV(*CSTRING InFileName),SIGNED,PROC,PASCAL,RAW,NAME('vuMailCreateCSV')
  END
END

csvPath CSTRING(260)
csvPath = 'C:\Temp\mailout.csv'
IF vuMailCreateCSV(csvPath) = 0
  MESSAGE('Create CSV failed: ' & vuMailLastError())
END

Notes

Home All functions Legacy functions Categories