I've been poking around the net, trying to get my BindingSource.
AddingNew event handler to cooperate.
Is it accurate that "AddingNew" doesn't work with a DataTable
source? (ref below)
- Jamie
ref:
(http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=146061&SiteID=1)
DataTable does not support IBindingList, which is required to raise the
ListChanged event.
Use a datasource that support IBindingList, such as BindingList

Signature
Sheng Jiang
Microsoft MVP in VC++
> I've been poking around the net, trying to get my BindingSource.
> AddingNew event handler to cooperate.
[quoted text clipped - 6 lines]
> ref:
> (http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=146061&SiteID=1)