"Clay" <Clay@discussio ns.microsoft.co m> schrieb:[color=blue]
>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?[/color]
For Windows ANSI:
\\\
Dim b() As Byte = System.Text.Enc oding.Default.G etBytes(MyStrin g)
///
--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://classicvb.org/petition/>
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!
"Herfried K. Wagner [MVP]" wrote:
[color=blue]
> "Clay" <Clay@discussio ns.microsoft.co m> schrieb:[color=green]
> >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?[/color]
>
> For Windows ANSI:
>
> \\\
> Dim b() As Byte = System.Text.Enc oding.Default.G etBytes(MyStrin g)
> ///
>
> --
> M S Herfried K. Wagner
> M V P <URL:http://dotnet.mvps.org/>
> V B <URL:http://classicvb.org/petition/>
>[/color]
Comment