When I create my TList of objects BEFORE setting the DataObject property on my BindScope I can see the items in my listbox
Damos := TList<TDamo>.Create();
Damos.Add(TDamo.Create('Damo'));
Damos.Add(TDamo.Create('Jeanette'));
theBindScope.DataObject := Damos;
But if I move the last line before the two Add lines, I never see the lines in the listbox.
Damos := TList<TDamo>.Create();
theBindScope.DataObject := Damos;
Damos.Add(TDamo.Create('Damo'));
Damos.Add(TDamo.Create('Jeanette'));
Shouldn't the bindings be responding to the OnNotify event from the TList ?
list.onNotifyevent handler – teran Aug 21 '12 at 9:33