本文介绍了为什么数据显示在datagridview中而不显示在两个文本框中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家
数据显示在datagridview中并且不会同时显示在两个文本框中?
这是我的按钮代码:
hi ,everyone
Data display in datagridview and not display in two text boxes in the same time ??
and this is my code in button:
da.SelectCommand = new SqlCommand("select * from tblcontacts ",cs);
ds.Clear();
da.Fill(ds);
dataGridView1.DataSource = ds.Tables[0];
DataTable dt = new DataTable();
dt.Columns.Add("firstname", typeof(string));
dt.Columns.Add("lastname", typeof(string));
tblnamesbs.DataSource = dt;
this.textBox1.DataBindings.Add("Text", this.tblnamesbs, "firstname", true);
this.textBox2.DataBindings.Add("Text", this.tblnamesbs, "lastname", true);
推荐答案
OleDbDataAdapter dAdapter = new OleDbDataAdapter("select * from oui_table", "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=bd.mdb");
dAdapter.Fill(ds, "t1");
this.dataGridView1.DataSource = ds.Tables["t1"];
this.textBox1.DataBindings.Add(new Binding("text", ds.Tables["t1"], "id_oui"));
tblnamesbs.DataSource = ds.Tables[0];
this.textBox1.DataBindings.Add("Text", this.tblnamesbs, "firstname", true);
this.textBox2.DataBindings.Add("Text", this.tblnamesbs, "lastname", true);
这篇关于为什么数据显示在datagridview中而不显示在两个文本框中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!