ArguementOutOfRangeException是未处理的错误

时间:2013-10-04 19:24:37

标签: c# datagridview

我是编程和c#的新手。这里我有ArguementOutOfRangeException。我想在每次单击按钮时向datagridview添加一个新数据行。所以我使用变量“i”逐个增加值,当我使用“0”时改变行值,这意味着

dataGridView2.Rows[0].Cells[0].Value = textBox1.Text.ToString();

而不是“i”第一行填充但使用“1”表示

dataGridView2.Rows[1].Cells[0].Value = textBox1.Text.ToString();

异常来了。做这种事的正确方法是什么?

namespace WindowsFormsApplication1
{
    public partial class Form2 : Form
    {
        public Form2()
        {
            InitializeComponent();
        }

    public SqlConnection conn;
    public int i = 0;

    private void Form2_Load(object sender, EventArgs e)
    {
        conn = new SqlConnection("Data Source=.\\SQLEXPRESS; Integrated Security=sspi; Initial Catalog=student");
        conn.Open();
    }

    private void button1_Click(object sender, EventArgs e)
    {
        string Sqlstr = "insert into student(name, pw)values(@name,@pw)";
        SqlCommand cmd = new SqlCommand(Sqlstr, conn);


        cmd.Parameters.AddWithValue("@name", textBox1.Text);
        cmd.Parameters.AddWithValue("@pw", textBox2.Text);


        if (cmd.ExecuteNonQuery() > 0)
        {
            i++;
            DataGridView dataGridView1 = new DataGridView();

            dataGridView2.Rows[i].Cells[0].Value = textBox1.Text.ToString();
            dataGridView2.Rows[i].Cells[1].Value = textBox2.Text.ToString();

        }
        label1.Text = Convert.ToString(i);

    }
}

}

2 个答案:

答案 0 :(得分:0)

在尝试编写新行之前,必须先添加新行。使用dataGridView2.Rows.Add( something ),请查看Add方法。

答案 1 :(得分:0)

每次单击按钮时都不必定义新的DataGridView,我相信您希望在数据库中插入后在现有DataGridView中添加新行。你可以这样做:

if (cmd.ExecuteNonQuery() > 0)
{
    DataGridViewRow row = (DataGridViewRow)dataGridView2.Rows[0].Clone();
    row.Cells[0].Value = textBox1.Text.ToString();
    row.Cells[1].Value = textBox2.Text.ToString();
    dataGridView2.Rows.Add(row);
}