我想在按下搜索按鈕時從文本框中取出字符串,然後我想要突出顯示放置數據網格的行。我相信這是可能的。我不知道如何做到這一點。請幫助我。如何使用數據網格進行搜索
string query = " SELECT * FROM suboffice where so_id like '%" + sor_id.Text + "%' ";
SqlConnection objConn = new SqlConnection(connectionString);
objConn.Open();
SqlDataAdapter subofficeTableAdapter1 =new SqlDataAdapter(query,objConn);
SqlCommandBuilder cBuilder = new SqlCommandBuilder(subofficeTableAdapter1);
DataTable dTable = new DataTable();
subofficeTableAdapter1.Fill(dTable);
dataGridView1.DataSource = dTable;
subofficeTableAdapter1.Update(dTable);
其中sor是一個搜索選項卡,當我把任何事情在這個運行時間我的數據網格視圖更新。這個程序將在C#中進行
[?'你嘗試過什麼'](http://mattgemmell.com/2008/12/08/what-have-you-tried/) –
試試這個: 1)谷歌 2 )3)如果沒有給出的東西,發佈問題的代碼... http://stackoverflow.com/questions/6210781/search-in-datagridview-c-sharp-winfom http:// stackoverflow。 com/questions/6989242/searching-a-datagridview-for-match-or-partial-match http://stackoverflow.com/questions/797946/search-datagridview-on-user-keypress –
什麼類型的應用程序?的WinForms? WPF? asp.net? – Tomtom