求助:Winform form1 点击按钮 (选中form1中datagridview内容)添加数据到form2的 datagridview1
Form1中的代码:publicstaticstringkjkm="";//定义参数privatevoidbutton5_Click(objectsender,Event...
Form1中的代码:
public static string kjkm="";//定义参数
private void button5_Click(object sender, EventArgs e)
{
int RowNumber =dataGridView1.CurrentCell.RowIndex;
kjkm = dataGridView1.Rows[RowNumber].Cells[0].Value.ToString() + dataGridView1.Rows[RowNumber].Cells[1].Value.ToString();
form2 a = new form2(kjkm);
a.Show();
this.Hide();
}
Form2中的代码:
public form2()
{
InitializeComponent();
}
public form2(string m)
{
InitializeComponent();
this.dataGridView1.Rows[dataGridView1.RowCount - 1].Cells[1].Value = m;
}
错误是:this.dataGridView1.Rows[dataGridView1.RowCount - 1].Cells[1].Value = m
索引超出范围。必须为非负值并小于集合大小。参数名: index 展开
public static string kjkm="";//定义参数
private void button5_Click(object sender, EventArgs e)
{
int RowNumber =dataGridView1.CurrentCell.RowIndex;
kjkm = dataGridView1.Rows[RowNumber].Cells[0].Value.ToString() + dataGridView1.Rows[RowNumber].Cells[1].Value.ToString();
form2 a = new form2(kjkm);
a.Show();
this.Hide();
}
Form2中的代码:
public form2()
{
InitializeComponent();
}
public form2(string m)
{
InitializeComponent();
this.dataGridView1.Rows[dataGridView1.RowCount - 1].Cells[1].Value = m;
}
错误是:this.dataGridView1.Rows[dataGridView1.RowCount - 1].Cells[1].Value = m
索引超出范围。必须为非负值并小于集合大小。参数名: index 展开
展开全部
初始化时:dataGridView1的RowCount为0
你再RowCount-1,那就为-1了!!
你再RowCount-1,那就为-1了!!
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你好,
form2刚创建,this.dataGridView1的数据源还没有数据,RowCount = 0,
所以你对Rows集合进行索引的时候就会报错,建议要取索引时先进行判断,如:
if(dataGridView1.RowCount > 0)
this.dataGridView1.Rows[dataGridView1.RowCount - 1].Cells[1].Value = m
form2刚创建,this.dataGridView1的数据源还没有数据,RowCount = 0,
所以你对Rows集合进行索引的时候就会报错,建议要取索引时先进行判断,如:
if(dataGridView1.RowCount > 0)
this.dataGridView1.Rows[dataGridView1.RowCount - 1].Cells[1].Value = m
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
错误是:this.dataGridView1.Rows[dataGridView1.RowCount - 1].Cells[1].Value = m
提示的已经很准确了,就是程序运行到这个位置的时候报错.在此位置你的dataGridView1根本没有任何数据.RowCount 为零
提示的已经很准确了,就是程序运行到这个位置的时候报错.在此位置你的dataGridView1根本没有任何数据.RowCount 为零
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询