User Profile
Collapse
-
THANK YOU SO MUCH IronRazer, IT WORKED, and it also helped that you explained it, because I'm not the best at VB.NET. Thank you so much. -
Yes I saw that Luuk, but all it did was put 1035 into the textbox.Leave a comment:
-
Actually, that doesn't work. I changes it into 1035. Even if the textbox is empty.Leave a comment:
-
I'm using WinForms so would I do?Code:output.Text = "{0} = {1}", hexadecimalstring, Convert.ToInt32(hexadecimalstring, 16).ToString()Leave a comment:
-
How do I convert Hexadecimal to String in VB.NET
I'm making a decoding app, and I made a Hexadecimal decoder, and now I need it to convert into text.
Here is my code to convert: Try
...Code:Sub convertHex() Dim byteArray() As Byte Dim hexNumbers As System.Text.StringBuilder = New System.Text.StringBuilder byteArray = System.Text.ASCIIEncoding.ASCII.GetBytes(input.Text) For i As Integer = 0 To byteArray.Length - 1 hexNumbers.Append(byteArray(i).ToString("x"))Last edited by Rabbit; Nov 29 '15, 05:44 AM. Reason: Please use [code] and [/code] tags when posting code or formatted data.
No activity results to display
Show More
Leave a comment: