N
NorCalVikesFan
We have an application that does mail merges using a macro which we are
trying to make internationally aware. The macro needs to be able to read a
Unicode text file and parse the text from the lines. A line in the text
file will look something like this:
"Start Date", "XSTARTDATE"
"End Date", "XENDDATE"
The first "field" is user definable, so it can be any characters the user
chooses.
Does anyone have any sample code that might do something like this?
Currently we just use the standard syntax like this:
Open "myfile.txt" For Input as 1
Input #1, sCaption, sField
But this doesn't seem to work when myfile.txt is a Unicode text file.
Any help you can give me would be greatly appreciated.
trying to make internationally aware. The macro needs to be able to read a
Unicode text file and parse the text from the lines. A line in the text
file will look something like this:
"Start Date", "XSTARTDATE"
"End Date", "XENDDATE"
The first "field" is user definable, so it can be any characters the user
chooses.
Does anyone have any sample code that might do something like this?
Currently we just use the standard syntax like this:
Open "myfile.txt" For Input as 1
Input #1, sCaption, sField
But this doesn't seem to work when myfile.txt is a Unicode text file.
Any help you can give me would be greatly appreciated.