Have a look on this for encoding in vb
http://www.example-code.co
http://www.example-code.co
Main Topics
Browse All TopicsI am trying to encode the column headers of the datagridview. My column headers look like this:
dataGrid.Columns.Add("name
How can I enable encoding?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Have a look on this for encoding in vb
http://www.example-code.co
http://www.example-code.co
Function EncodeString(ByRef SourceData As String, ByRef CharSet As String) As Byte()
'get a byte pointer To the source data
Dim bSourceData As Byte() = System.Text.Encoding.Unico
'get destination encoding
Dim OutEncoding As System.Text.Encoding = System.Text.Encoding.GetEn
'Encode the data To destination code page/charset
Return System.Text.Encoding.Conve
End Function
Imports System.Text
...
Public Function StringAsUtf8Bytes(ByVal strData As String) As Byte()
Dim bytes() As Byte
' get unicode string as bytes
bytes = Encoding.UTF8.GetBytes(str
' return byte data
Return bytes
End Function
Business Accounts
Answer for Membership
by: harris_cPosted on 2007-09-27 at 01:34:15ID: 19969579
I tried this and it worked fine:
"hello", "Áç")
DataGridView1.Columns.Add(
I saved the Form1.vb as unicode.