|
|
|
start date: Fri, 27 Jul 2007 15:55:39 -0400,
posted on: microsoft.public.dotnet.framework.windowsforms.databinding
back
| Thread Index |
|
1
Jamie Risk risk.#
|
|
2
Sheng Jiang[MVP] uss
|
|
3
Sheng Jiang[MVP] uss
|
Does BindingSource.AddingNew work with a DataTable? (Part 1)
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)
Date:Fri, 27 Jul 2007 15:55:39 -0400
Author:
|
Re: Does BindingSource.AddingNew work with a DataTable? (Part 1)
DataTable does not support IBindingList, which is required to raise the
ListChanged event.
Use a datasource that support IBindingList, such as BindingList
--
Sheng Jiang
Microsoft MVP in VC++
"Jamie Risk" <risk.#.@intectus.com> wrote in message
news:#vCocgI0HHA.3972@TK2MSFTNGP03.phx.gbl...
> 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)
Date:Tue, 31 Jul 2007 15:54:55 -0500
Author:
|
Re: Does BindingSource.AddingNew work with a DataTable? (Part 1)
DataTable does not support IBindingList, which is required to raise the
ListChanged event.
Use a datasource that support IBindingList, such as BindingList
--
Sheng Jiang
Microsoft MVP in VC++
"Jamie Risk" <risk.#.@intectus.com> wrote in message
news:#vCocgI0HHA.3972@TK2MSFTNGP03.phx.gbl...
> 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)
Date:Tue, 31 Jul 2007 15:54:55 -0500
Author:
|
|
|