问一个datagridview的绑定问题
我的程序里有一个datagridview控件,通过设计器直接绑定到数据库的表table1但是现在需要加一个条件,就是datagridview只显示table1里字段 table1.name='" & textbox1.text & "'的内容
但是设计器里好像不能加入这个查询条件
请问如何解决,谢谢!
--------------------编程问答-------------------- 同时要求满足在用datagridview中的修改刷新数据库的时候也只刷新table1里字段 table1.name='" & textbox1.text & "'的内容 --------------------编程问答-------------------- 可以将不需要显示的列的visable属性设为false --------------------编程问答-------------------- Private dtb As New DataTable
Private sbrSQL As New StringBuilder("")
sbrSQL.Length = 0
sbrSQL.AppendLine("SELECT *")
sbrSQL.AppendLine("FROM table1")
sbrSQL.AppendLine("WHERE name Like '%" & textbox1.text & "%'")
dtb.Clear()
dtb = getDtbFromSQL(sbrSQL.ToString)
datagridview.datasource=dtb --------------------编程问答-------------------- LZ试试这样看看,
Private dt as new DataTable
dt=Ctype((设计器中的数据源),DataTable).Select("Name='%" & TextBox1.Text & "%'")
GridView1.DataSource=dt
GridView.DataBind()
补充:.NET技术 , VB.NET