Bound TextBox does not always update when datasource changed
I have a simple TextBox (TBFirstName) bound to a property of a class thusly: (TBFirstName.DataBindings.Add(“Text”, Employee, “FirstName”).Employee is an instance of the class “Person” with a property (among others) of “FirstName”.
Changing the TBFirstName changes Employee.However, changing the value ofEmployee.FirstName does not always change the TBFirstName. My problem is that I do not know the circumstances under whichchanging the property Employee.FirstName will actually change the TextBox.For example, setting Employee.FirstName from the text_changed event on another TextBox worked while setting it from the Click event of a button or the Validated event of the other TextBox had no effect on the bound TBFirstName.How can I know when changing/setting the property Employee.FirstName will cause the bound Textbox to change also?

