我是新手...... 我是如此...... 请帮帮我 我有额外商品的餐桌详细预订 然后在详细信息预订表单上插入一个显示商品表的datagridview 在我把文本框放在寻找数据项的形式... 在搜索之前是功能,但是当商品被添加到详细信息表预订中时,搜索不是功能(错误) 附件错误代码和我在下面附加的搜索代码.. 谢谢....
Private Sub txtCari_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtCari.TextChanged
DS.Tables("tbl_barang").DefaultView.RowFilter = " kode_barang LIKE '%" & txtCari.Text & "%' OR nama_barang LIKE '%" & txtCari.Text & "%'or nama_satuan LIKE '%" & txtCari.Text & "%' or nama_spesifikasi LIKE '%" & txtCari.Text & "%'"
End Sub