Can you please tell me what's wrong with this statement ? i get no errors but I get no o/p either!
Private Sub Button6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button6.Click
Dim con As OleDbConnection = New OleDb.OleDbConnection("provider=microsoft.jet.oledb.4.0;data source=C:\Documents and Settings\bashkark\Desktop\Copy of USERS.mdb")
If (ComboBox6.SelectedItem = 0.5) And (ComboBox7.SelectedItem) Then
Dim cmd1 As New OleDbCommand
cmd1 = New OleDbCommand("select * from table1 where RAM between 0.5000 and 2.000")
End If
End Sub