Click here to Skip to main content
15,892,005 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have a Winform (.Net 3.5 VS 2010 VB) with two datagrids, a Parent and a Child.

I need to pass the Parent ID to the Child in order to save Child record, so I save the Parent first to get the ParentID before entering the Child grid.

However, when the Parent records save it always returns to the first (top) record in the Parent Grid and I can't enter any data in the Child grid for the second Parent record.

How do I work this out?

Thank you
Posted
Updated 21-Apr-11 8:02am
v2

1 solution

You must enable to True in bindingsource poperty window to add new for child datagridview in order to add in child datagridview!
or use this code in Form1 load event:
childbindingsurce.addnew = True

try something like this!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900