I use VB6, but I am not familiar with VB5. However, they should be more or less the same.
Try a
Label box instead of a
Text box. The following code works fine for me, because I just took it from one of my working VB6 programs.
Code:
Label1.Caption = byte1 & vbcrlf & byte2 & vbcrlf & byte3
If you still insist in using a
Text box, then the following might help you. This quote is taken from a VB6 help file.
Bookmarks