Well... What would be said.. Hi?
I'm French and not so good at speaking English. So I won't spend my time writing a long message...
Why do these two codes give different results?
code:
fso.DeleteFile(chemin_fichier_calendrier);
fichier2 = fso.CreateTextFile(chemin_fichier_calendrier, 2, false);
code:
fichier2 = fso.CreateTextFile(chemin_fichier_calendrier, 2, true);
The file at "chemin_fichier_calendrier" always exists when these instructions are read.
Isn't the "true" parameter at the end of the "CreateTextFile" command supposed to overwrite the existing file?
The first possibility is the one that works for me. The second one gives... strange results, the output file isn't as I expect it to be (unexpected spaces and characters that I can't find on my keyboard...).
Thx