I have just started working on MS Access 2007. I know how to create a form and add buttons, textboxes, etc
I don't know how to connect my values entered in textbox to my table in database.
How do I save a new record?
I know the query, which is;
INSERT INTO table_name VALUES (txtUser, txtEmail);
I just want my "Save" button to execute the above query.
First of all, is my query correct? Is this the right way of connecting textbox values so as to save in my table?