I have an ADODB Data Control on my form. What is the simplest method of running an insert command against the database (MS Access) that control is hooked up to? Could you give me a code example? Thanks.
Printable View
I have an ADODB Data Control on my form. What is the simplest method of running an insert command against the database (MS Access) that control is hooked up to? Could you give me a code example? Thanks.
are u looking to use an ADODB command to insert into the MSAccess file ?
did u try the regular:
Connection object
Recordset object
open connection
open recordset
recordset.addnew
???