Jump to content
Xtreme .Net Talk

Sutton2k9

Members
  • Posts

    1
  • Joined

  • Last visited

About Sutton2k9

  • Birthday 06/13/1994

Sutton2k9's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. 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
×
×
  • Create New...