i can't seem to get it to save the Hex string back to a file.
This is the code i using to open the file
Dim builder As New StringBuilder
Using reader As FileStream = File.OpenRead(Parth)
Dim length As Long = reader.Length
Do Until reader.Position = length
If reader.Position > 0L Then
builder.Append(" "c)
End If
builder.Append(reader.ReadByte().ToString("X2"))
Loop
End Using
RichTextBox1.Text = builder.ToString()
But how can i save the Hex in richtexbox1.text
Thanks Sutton