hi all i need is the comments for this piece of code
here it is:
Private Sub populate()
con = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & _
System.Environment.CurrentDirectory.ToString() & "\DataBase.mdb") '
con.Open()
dAdapt = New Data.OleDb.OleDbDataAdapter("select * from Watches", con)
dSet = New DataSet
dAdapt.Fill(dSet)
dBind.DataSource = dSet
dBind.DataMember = dSet.Tables(0).ToString()
DataGridView.DataSource = dBind
End Sub
please help thx