I have a list box bound to a Name property in a custom class. How do I make it show changed data I have a NameChanged event and when I trap that in the form and show the listbox.text value in the debug window it is different to what is seen in the list. How do I refresh it

Databound listbox not updating
JohnCNTS
BindingContext[myobjs].SuspendBinding(); //My ListBox's DataSource is myobjs
myobjs[1].foo = 5; //Set the property you're interested in
BindingContext[myobjs].ResumeBinding();
ianic
Chear