I've managed to query my MS Access database through Excel using the ADO method.
I'd like to learn how the syntax differs for an INSERT query; specifically when inserting values from a form.
Here is the code I use for a SELECT query:
Set myConnection = New ADODB.Connection
Set myResults = New...