Am 19.04.2006 um 21:35 schrieb Hans-Georg:
Dim s As String = "äöü"
Dim cs As String = s.ConvertEncoding
(Encodings.WindowsANSI).DefineEncoding(Nil)
cs is "‰ˆ¸"
That was the problem. The solution is (you know that, of course)
EditField.Text = myStringReceivedFromMySQL.DefineEncoding
(Encodings.WindowsANSI).ConvertEncoding(Encodings.UTF8)
Hans-Georg
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>