G
Guest
I have an application that is using Datagrids to display a collection of
objects (.Net 1.x, VB.Net environment using Collection Object). The
Collection Object, lets say holds a collection of Customer Objects.
I want the datagrid to be editable, so that users can enter data through the
grid and have it update properties of the specific Customer object.
Also I need for when the users clicks the new row in the datagrid that the
Collection adds a new Customer object to it. The problem I am having is that
when I click the new row in datagrid, I get a system.dll exception.
What I see happening is that when new is clicked in the datagrid, the
collection class returns a New Object(). Is there an event or property that
I need to implement on my Customer Objects so that it will understand the
datagrids request for a new object?
objects (.Net 1.x, VB.Net environment using Collection Object). The
Collection Object, lets say holds a collection of Customer Objects.
I want the datagrid to be editable, so that users can enter data through the
grid and have it update properties of the specific Customer object.
Also I need for when the users clicks the new row in the datagrid that the
Collection adds a new Customer object to it. The problem I am having is that
when I click the new row in datagrid, I get a system.dll exception.
What I see happening is that when new is clicked in the datagrid, the
collection class returns a New Object(). Is there an event or property that
I need to implement on my Customer Objects so that it will understand the
datagrids request for a new object?