In the previous post. We described the connection to the Microsoft Access database.
Now we will add some functionality to that. The user can insert diferent records.
For start, make a form like this (the names of the components are specified on the picture)
Now in the button1 event method insert this code
string connStr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=db.mdb;";
OleDbConnection conn [...]
{ View Comments }



