私は初心者です...申し訳ありません...助けてください私は追加商品のテーブルの詳細予約をしており、詳細予約フォームに商品のテーブルを表示するデータグリッドビューをプラグインしますデータ項目を探す・・・検索前の機能ですが、明細表予約に商品が追加された場合、検索機能ではありません(エラー)添付エラーコードと検索コードを下記に添付します。よろしくお願いします・・・.
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