Hi,
I have an csv file i want to read with VBScript. All works fine except something goes wrong with chars like éëü etc...
When i view the file with Total Commander and unicode+ascii selected these chars look allright, when i look with unicode+ansi i get: ‚‰
I have looked around and found i can open the file like this:
Const ForReading = 1, ForWriting = 2, ForAppending = 8
Const Unicode = -1, ASCII = 0
fspenTextFile("file.csv", 1, 0, ASCII) or fspenTextFile("file.csv", 1, 0, Unicode)
But both don't seem to work
the example file "file.csv" consists of only : ‚‰
Anyone a solution to read that file correctly?
I have an csv file i want to read with VBScript. All works fine except something goes wrong with chars like éëü etc...
When i view the file with Total Commander and unicode+ascii selected these chars look allright, when i look with unicode+ansi i get: ‚‰
I have looked around and found i can open the file like this:
Const ForReading = 1, ForWriting = 2, ForAppending = 8
Const Unicode = -1, ASCII = 0
fspenTextFile("file.csv", 1, 0, ASCII) or fspenTextFile("file.csv", 1, 0, Unicode)
But both don't seem to work
the example file "file.csv" consists of only : ‚‰
Anyone a solution to read that file correctly?