VB.net. I hope I'm missing something simple here. I have textbox bound to datatable as follows.
If I go back to the database to retrieve a different set of records it seems I have to reset the bindings. Is there a way to set the bindings once and preserve them for the life of the form?
Auguy
Sylvania/Toledo Ohio
Code:
txtUnitNo.DataBindings.Clear()
txtUnitNo.DataBindings.Add("Text", dsUnit.Tables(0), "UnitNo")
Auguy
Sylvania/Toledo Ohio