Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm new in the C#/Database world. I just created a C# project, connected it to a database and filled a datagrid from a table.

I didn't write any code so far, just using the Visual C# wizard and few drag-and-drops. My grid is now showing data retrieved from a table, but I can't update or delete rows. So, how do I update or delete rows from the database and validate it? This is my page form1.cs:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace Learn
{
    public partial class Form1 : Form
    {

        public Form1()
        {
            InitializeComponent();
        }

        private void userBindingNavigatorSaveItem_Click(object sender, EventArgs e)
        {
            this.Validate();
            this.userBindingSource.EndEdit();
            this.tableAdapterManager.UpdateAll(this.usersDataSet);
        }       

        private void Form1_Load(object sender, EventArgs e)
        {
            // TODO: This line of code loads data into the 'usersDataSet.User' table. You can move, or remove it, as needed.
            this.userTableAdapter.Fill(this.usersDataSet.User);
        }

        private void userDataGridView_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {

        }

        private void bindingNavigatorDeleteItem_Click(object sender, EventArgs e)
        {
            //Code to delete an item
        }

        private void bindingNavigatorAddNewItem_Click(object sender, EventArgs e)
        {
            //Code to add an item
        }
    }
}

So, I need now to perform update and delete, any help will greatly appreciated.

share|improve this question
2  
Which UI framework? WinForms, WPF, Silverlight, ASP.NET WebForms, LightSwitch? – Joe White Dec 28 '11 at 15:30
Desktop, a windows form. – Nadj Dec 28 '11 at 15:36
1  
Added the "winforms" tag for you. – Joe White Dec 28 '11 at 15:37
Ah, thank you, still waiting for any help. – Nadj Dec 28 '11 at 15:43

1 Answer

To validate data when you are updating it, you would subscribe to the RowValidating event and process validation there. Please refer to this example:

http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview.rowvalidating.aspx

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.