If cboSearch.Text = "Books" Then
Dim ProductId As String
txtProductID.Text = ProductId
ProductId = "SELECT ID, ISBN, Title,Format, Quantity FROM BooksInfo WHERE ISBN ='" & ProductId & "'"
Dim dt As New DataTable
OleDbDataAdapter1.Fill(dt)
DataGrid1.DataSource = dt
End If
There's 1 combobox(with the category choices) and 1 textbox...user have to choose the category from the cbobox and type the productid in the txtbox...when i run this code only the info for B0001 is supposed to show on the datagrid, but when i run it..the whole list comes out...how do i solve this??
2006-07-25
03:49:20
·
1 answers
·
asked by
braich_gal
3
in
Programming & Design