F
Flomo Togba Kwele
Why would the first statement execute fine, but the second errors out? How can this be?
The first line is in the Load event, the second in a button event. The error message
follows the second line.
Also, aBindingSource.SupportsSearching is True.
TextBox1.DataBindings.Add("Text", aBindingSource, "FK_Name.DataMemberA", True)
dim position as Integer = aBindingSource.Find("FK_Name.DataMemberA", 3)
(Message="DataMember property 'FK_Name.DataMemberA' cannot be found on the DataSource.")
The first line is in the Load event, the second in a button event. The error message
follows the second line.
Also, aBindingSource.SupportsSearching is True.
TextBox1.DataBindings.Add("Text", aBindingSource, "FK_Name.DataMemberA", True)
dim position as Integer = aBindingSource.Find("FK_Name.DataMemberA", 3)
(Message="DataMember property 'FK_Name.DataMemberA' cannot be found on the DataSource.")