如何使用Textchanged事件在textBox上执行RowFIlter?

时间:2019-05-15 02:19:34

标签: c# winforms ms-access

我在youtube上看到的代码无效。我需要在Rowfilter上使用TextChanged事件来TextBox

DataView dv = dt.DefaultView;

dv.RowFilter = "Patient_Number LIKE '%" + textBox11.Text + "%'";

然后,当我启动程序时,它将显示错误:

System.Data.EvaluateException: 'Cannot find column [Patient_Number].'

0 个答案:

没有答案