This code simpy does not work..it does not do anything..can anyone please help me figure out why this is happening?
Thanks,
Kavitha.
Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
Dim con As New OleDbConnection("provider=microsoft.jet.oledb.4.0;data source=C:\Documents and Settings\bashkark\Desktop\Copy of USERS.mdb")
con.Open()
Dim cmd1 As New OleDbCommand
If (CheckBox1.Checked = True) Then
cmd1 = New OleDbCommand("select * from table1 where MECH='X'")
Dim da As OleDbDataAdapter = New OleDbDataAdapter(cmd1)
Try
Dim ds As DataSet = New DataSet()
ds.Tables.Add("table1")
da.Fill(ds, "table1")
DataGridView1.DataSource = ds.Tables("table1").DefaultView
Finally
con.Close()
cmd1 = Nothing
da.Dispose()
con.Dispose()
End Try
End If
End Sub