H
Harry Simpson
I'm scanning data and then placing it in a textbox on a form. This was
working before and really can't figure out what changed that it's not
working now.
Try
'Slap the scan read into the first textbox
If txtPatientNumber.Text = "" Then
txtPatientNumber.Text = Me.DataGrid1.Item(e.NewIndex -
1, 0)
Exit Sub
End If
When I get to the end of the debug step through, in the immediate windows I
type:
?txtPatientNumber.text
and I get the value:
"1234567"
But it never displays in the textbox as it did before.
Any ideas what's going on?
TIA
Harry
working before and really can't figure out what changed that it's not
working now.
Try
'Slap the scan read into the first textbox
If txtPatientNumber.Text = "" Then
txtPatientNumber.Text = Me.DataGrid1.Item(e.NewIndex -
1, 0)
Exit Sub
End If
When I get to the end of the debug step through, in the immediate windows I
type:
?txtPatientNumber.text
and I get the value:
"1234567"
But it never displays in the textbox as it did before.
Any ideas what's going on?
TIA
Harry