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:
Private Sub Timer1_Timer() Timer1.Enabled = False Dim TextString For i = 0 To (strInput(0) And &H1F) TextString = TextString + Hex$(strInput(i)) + "H " ' Text1.Text = Text1.Text + Hex$(strInput(i)) + "H " & Chr$(13) + Chr$(10) Next i Text1.Text = TextString & Chr$(13) + Chr$(10) End Sub
Thanks Again for your good help
Best Regards,
Didier.




, but I have tried several methods to have one line under the other line?

Reply With Quote