I\'m trying to write some Chinese characters to a text file using
Set myFSO = CreateObject(\"Scripting.FileSystemObject\") Set outputFile = myFSO.OpenTextFile(ge
Try this:-
MsgBox "Writing Line" On Error Resume Next outputFile.WriteLine s '' # Removed ( ) that shouldn't be there. MsgBox "Err " & Err.Number & ": " & Err.Description On Error GoTo 0
What do you get?