datagridview怎么把一行数据复制到另一个datagridview [C# VS2005]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了datagridview怎么把一行数据复制到另一个datagridview [C# VS2005]相关的知识,希望对你有一定的参考价值。
这里是全部复制过去了,我想只复制一行,请问怎么改?
DataTable tb1 = (DataTable)this.dataGridView1.DataSource;
DataTable tb2 = new DataTable();
tb2 = tb1.Copy();
this.dataGridView2.DataSource = tb2;
DataTable tb2 = new DataTable();
tb2 = tb1.Copy();
DataRow dr = tb2.NewRow();
dr[0]=dataGridView1.rows[n].Cells[0].value;
dr[1]=dataGridView1.rows[n].Cells[1].value;
dr[2]=dataGridView1.rows[n].Cells[2].value;
……n是你要复制行的索引
tb2.Rows.Add(dr);
this.dataGridView2.DataSource = tb2;本回答被提问者采纳 参考技术B tb2 =tb1.row[i].copy(); i你是想要复制那一行
C# 怎么把从数据库查询出来的东西累加到dataGridView里面去
string cmd="SQL语句";DataSet RQ=new DataSet;
//下面传递的参数中第二个是connection类型的SQL连接对象!
SqlDataAdapter run=new SqlDataAdapter(cmd,一个SQL连接)
QR.Fill(run);
Datagridview1.Datasource=RQ.Table[0].DefaultView;
//此时datagridview中就是你查询出来的内容了
不好意思,我没看见累加,现在给你累加的
int index = this.dataGridView1.Rows.Add();this.dataGridView1.Rows[index].Cells[0].Value = Title;
this.dataGridView1.Rows[index].Cells[1].Value=DateTime.Now.ToString();
this.dataGridView1.Rows[index].Cells[2].Value = Result;
this.dataGridView1.Rows[index].Cells[3].Value = URL; 参考技术A 有两种思路
1.在datagridview 一行一行的加 add.rows
2.把datagridview映射到datatable中 让后在datatable中加上数据里查询的datatable 参考技术B 要么是重写数据表,要么是用add一条一条加进去,动态的做不到。
以上是关于datagridview怎么把一行数据复制到另一个datagridview [C# VS2005]的主要内容,如果未能解决你的问题,请参考以下文章
Excel 怎么让一个表格每一行的数据都单独复制到另一个表格中
linux命令模式下怎么把一个文本中的一行复制到另一个文本中?