I have a form that has the 'data entry' property set to yes. It is bound to a table. When I start filling in the form it automatically saves it. I do not want this to happen. I only want the form to save to the table when I press a button. Any easy way to do this? w/o vba. If i can only do this with vba let me know how to do it that what.
标签:
ms-access-2010
相关问题
- Is there a way to apply theme on converted access
- Share a mdb file over network, for many computers,
- Query results not showing records with null values
- Are Access 2010 databases not accessible with Exce
- Trying to read data out of MSysObjects with ODbc i
相关文章
- Lookup and Relationship with multiple columns
- Insert into Access Select from Excel from within A
- How to count number of fields in a table?
- How do I create a passthrough query in access usin
- I am getting: \"You tried to execute a query that
- MS Access: Summing time greater than 24 hours in q
- How to enable 1 user to update the database while
- How to create a new form instance using the name o
The best way to do this is with an unbound form. When the user clicks save, you can run a query to update your table from the controls.
Using a recordset
If you wanted to update a record where you already knew the primary key, you could say:
Using a query that you have created in the query design window
SQL for the query
VBA
This will give a warning
This will not
You could also use dynamic SQL or a query with parameters that you assign in code.