Hello,

I know this is really a newbie question , but I have tried several methods to have one line under the other line?

What I need is simple , when a string come in it will be put on the first line.
When the next string come in , it will be put on the next line , and so on.

But in the below script , the next line overwrite the first one

VB Code:
  1. Private Sub Timer1_Timer()
  2. Timer1.Enabled = False
  3. Dim TextString
  4.     For i = 0 To (strInput(0) And &H1F)
  5.     TextString = TextString + Hex$(strInput(i)) + "H "
  6. '    Text1.Text = Text1.Text + Hex$(strInput(i)) + "H " & Chr$(13) + Chr$(10)
  7.     Next i
  8.     Text1.Text = TextString & Chr$(13) + Chr$(10)
  9. End Sub

Thanks Again for your good help
Best Regards,
Didier.