I am using this code that you posted
How would i now save the file?Code:Dim builder As New System.Text.StringBuilder Using reader As IO.FileStream = IO.File.OpenRead("file path here") 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 MessageBox.Show(builder.ToString())




Reply With Quote