A aurora Sep 21, 2004 #1 I something like this: dim mybytes() as byte = "hello world" The string is ascii.
M Mythran Sep 21, 2004 #2 Dim bytes As Byte() Dim text As String = "hello world" Dim b As Byte bytes = System.Text.ASCIIEncoding.ASCII.GetBytes(text) Hope it helps Mythran
Dim bytes As Byte() Dim text As String = "hello world" Dim b As Byte bytes = System.Text.ASCIIEncoding.ASCII.GetBytes(text) Hope it helps Mythran