AddStringToFile
function AddStringToFile(sFileName As String, s As String) As Boolean
Adds the string s (inclusive a carriage return/linefeed) to the file sFilename.
If the string could not be added, AddStringToFile returns FALSE.
Parameters
Example:
Dim s
s = "feature executed successfully"
AddStringToFile("c:\mydocs\log.txt", s)