> Hello!
> I've got a litte (but I think often asked question). How can I change
[quoted text clipped - 5 lines]
> Greetings
> Alex
Hi Alex,
If changing a value in the form updates something and doing it
programmatically does not, it is probably a case of a missing notification.
Assuming you have bound the Text property of the testTextBox you can force a
binding update.
testTextBox.DataBindings["Text"].WriteValue();
For the records, if you are updating a business object programmatically and
the changes aren't reflected on screen, have the business object implement
INotifyPropertyChanged and fire a PropertyChanged event upon property changes.

Signature
Happy Coding!
Morten Wennevik [C# MVP]