Quote Originally Posted by rsocor01 View Post
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.
I tried your example and it worked but try this and let me know if it works for you


label1.Caption = byte1 & byte2 & byte3 & vbcrlf

now go through this 5 times and see if it goes to the next line or stays on one line