Is the
Product
field in your
Clarus
table a numeric field or a text field? If the latter, I'm not surprised you are having a problem as you are not wrapping the value in quotes e.g.
"SELECT * FROM Clarus WHERE (Product = '" & ComboBox1.SelectedItem & "')"
In either case it would be better to use a parameterised query such as:
Dim DA1 As New OleDbDataAdapter("SELECT * FROM Clarus WHERE (Product = ?)", conn)
DA1.Parameters.AddWithValue("@Product", ComboBox1.SelectedItem)
as you then don't have to worry about what type of data is contained in the
Product
field.