Hi all ,

Iam trying to get info from the scanner into a textbox. when i scan a numerical value it displays it but when it is associated with AB12345678 it displays only 78. How can i display the whole string. Iam using this code:

If MSComm1.InBufferCount > 0 Then ' If theres data in comm buffer
inst = inst + MSComm1.Input ' Get the data
TextBox1.SetFocus
TextBox1.Value = inst ' Show its value
End If

need ur inputs on this.

thanks