I don't download files from these two sites because they create Ad-Ware on my
PC. Use something like Savefile.com instead.
There are some white characters ( control characters) that you don't see
that is causing the problems.
"George J" wrote:
Hmmm
When i look at the text from the file in the VB Editor, it looks like:
http://img412.imageshack.us/my.php?image=new1f.jpg
and displays in the cell as:
ÿþM
But in the text file it is displayed as "Mar 2003".
When i change the encoding manually for that file from unicode to ANSI, it
appears in both the VBE and in the cell as "Mar 2003".
This is the file:
http://www.filefactory.com/dlf/f/aga...0/n/text20_txt
I thought i might be able to save the files that are currently there only
with ANSI encoding. Would i need to try doing this using sendkeys and
notepad?
"joel" wrote:
Saving as text won't remove the control characters. Unicode is really 16
bit data and ascii is 8 bit data. Saving as text just changes the byte
structure of the data and doesn't eliminate the data
Unicode
1234
5678
9ABC
Ascii
12
34
56
78
9A
BC