goneWildCoder
Programmer
I have a textbox driven windows form in C# whose values corresponding to rows of a dataset being filled from a database table. When the user clicks the Insert button, I want to add a new row with values entered by the user.
After the user has finished entering a new record, I want to update the row to the dataset and subsequently to the database table. How do i do this?
I tried adding a row changing event and calling the update function in it; however, this means that the user must either click insert so that the row is changed before update is possible...
Any other solutions to get around this...??
Thanks
After the user has finished entering a new record, I want to update the row to the dataset and subsequently to the database table. How do i do this?
I tried adding a row changing event and calling the update function in it; however, this means that the user must either click insert so that the row is changed before update is possible...
Any other solutions to get around this...??
Thanks