受け取った日付とアイテムの2つの列があるとしましょう
同じ日付が 5 行ある日付を検索した場合
テキストボックスに表示されます
助けてください
*注、私はデータベース接続としてoledbを使用しています
これは私の検索コードです
Private Sub TxSearch_TextChanged(sender As System.Object, e As System.EventArgs) Handles TxSearch.TextChanged
If Con.State = ConnectionState.Closed Then
Con.Open()
End If
Dad = New OleDb.OleDbDataAdapter("select RecordDate, Item from inv where RecordDate LIKE '%" & TxSearch.Text & "%'", Con)
Dim dt As New DataTable
Dad.Fill(dt)
Me.DataGridView1.DataSource = dt
Con.Close()
DataGridView1.RowsDefaultCellStyle.BackColor = Color.DeepSkyBlue
DataGridView1.AlternatingRowsDefaultCellStyle.BackColor = Color.White
Con.Close()
SortDatagridviewColumn(0)
End Sub