Here's the basics of it . . .
'textbox that does not work
'txtState
'
Me.txtState.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.DsInfo1, "Customers.State"

)
Me.txtState.Location = New System.Drawing.Point(300, 172)
Me.txtState.MaxLength = 2
Me.txtState.Name = "txtState"
Me.txtState.Size = New System.Drawing.Size(28, 20)
Me.txtState.TabIndex = 6
'textbox that does work
'TextBox2
'
Me.TextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.DsInfo1, "Customers.State"

)
Me.TextBox2.Location = New System.Drawing.Point(496, 500)
Me.TextBox2.MaxLength = 2
Me.TextBox2.Name = "TextBox2"
Me.TextBox2.Size = New System.Drawing.Size(96, 20)
Me.TextBox2.TabIndex = 73
daCustomer.Fill(DsInfo1.Customers)