0
我想在TextBox
自動搜索。當我搜索字符串在DataGridView中自動搜索
此代碼運行,但是當我搜索一個整數,這是錯誤:
Cannot perform 'Like' operation on System.Int32 and System.String
我希望你能幫忙,因爲我現在需要它。
private void textBox1_TextChanged(object sender, EventArgs e)
{
DataView DV = new DataView(dataTable);
DV.RowFilter = string.Format("OrderNo LIKE '%{0}%'",textBox1.Text);
dataGridView1.DataSource = DV;
}
謝謝你幫它幫助,但如果我不是輸入任何數字我的DataGridView將不顯示任何數據.. – jao
@jao我更新了我的答案。最後的代碼片段應該適合你。 –