I have nice piece of code that brings data into my Excel macro from a file (I think I got it from Tek Tips long ago.)
-------------------------------------
hdle = 1
Open XML_FILE_NAME For Binary As #hdle
Do Until EOF(hdle)
Line Input #hdle, strLine
XML = XML & strLine
Loop
Close #hdle
-------------------------------------
This works fine but when there are special characters in the file they get translated to a different character
eg Straße becomes Straße
Anyone any bright Ideas?
-------------------------------------
hdle = 1
Open XML_FILE_NAME For Binary As #hdle
Do Until EOF(hdle)
Line Input #hdle, strLine
XML = XML & strLine
Loop
Close #hdle
-------------------------------------
This works fine but when there are special characters in the file they get translated to a different character
eg Straße becomes Straße
Anyone any bright Ideas?