rivate Sub Command2_Click( )
Dim i As Long
For i = 1 To mfilesize Step 6
rich1.Text = rich1.Text & "Before : " & HexByte2Char(ar rByte(i)) & _
" " & HexByte2Char(ar rByte(i + 1)) & " " _
& HexByte2Char(ar rByte(i + 2)) & " " _
& HexByte2Char(ar rByte(i + 3)) & " " & HexByte2Char(ar rByte(i + 4)) & " " & HexByte2Char(ar rByte(i + 5))
Next
End Sub
using this coding the output is nasty.How to make it seperated by line and how to use the scroll box to see the data in the rich text box.what is the coding
Dim i As Long
For i = 1 To mfilesize Step 6
rich1.Text = rich1.Text & "Before : " & HexByte2Char(ar rByte(i)) & _
" " & HexByte2Char(ar rByte(i + 1)) & " " _
& HexByte2Char(ar rByte(i + 2)) & " " _
& HexByte2Char(ar rByte(i + 3)) & " " & HexByte2Char(ar rByte(i + 4)) & " " & HexByte2Char(ar rByte(i + 5))
Next
End Sub
using this coding the output is nasty.How to make it seperated by line and how to use the scroll box to see the data in the rich text box.what is the coding
Comment