G Guest May 25, 2005 #1 I need to convert a unicode string to an ansi string. This should not be difficult but I simply cannot find a way to do this. Anyone?
I need to convert a unicode string to an ansi string. This should not be difficult but I simply cannot find a way to do this. Anyone?
H Herfried K. Wagner [MVP] May 25, 2005 #2 Clay said: I need to convert a unicode string to an ansi string. This should not be difficult but I simply cannot find a way to do this. Anyone? Click to expand... For Windows ANSI: \\\ Dim b() As Byte = System.Text.Encoding.Default.GetBytes(MyString) ///
Clay said: I need to convert a unicode string to an ansi string. This should not be difficult but I simply cannot find a way to do this. Anyone? Click to expand... For Windows ANSI: \\\ Dim b() As Byte = System.Text.Encoding.Default.GetBytes(MyString) ///
G Guest May 26, 2005 #3 Thanl you!!! Now I'm not sure what the client needs though, so I gave them every file format including, uicode, ansi, utf7, utf8, but thank you!
Thanl you!!! Now I'm not sure what the client needs though, so I gave them every file format including, uicode, ansi, utf7, utf8, but thank you!