B
Bob
Is there a way to set what Default.Encoding returns in an appliaiton?
I have an object that uses this and I have no way to change it. The only
way for it to work is if I could change what Encoding.Default returns.
i.e.
'Change to correct code page.
Encoding.Default = Encoding.GetEncoding(51936)
...Do work with object.
'Change back to original
Encoding.Default = Encoding.GetEncoding(1252)
Thanks for any help.
Bob
I have an object that uses this and I have no way to change it. The only
way for it to work is if I could change what Encoding.Default returns.
i.e.
'Change to correct code page.
Encoding.Default = Encoding.GetEncoding(51936)
...Do work with object.
'Change back to original
Encoding.Default = Encoding.GetEncoding(1252)
Thanks for any help.
Bob