Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add new record to table in Ms Access by form?

I made form by wizard, but when I run this, first I have in fields first record from table, and I can edit this record, but I don't want to have this. I want to have blank field and when I click add button i can add new record, not edit....

like image 825
kspacja Avatar asked Dec 05 '22 01:12

kspacja


1 Answers

Change the form's properties:

AllowEdit = False to prevent changing existing records
and/or
DataEntry = True to arrive on the New Record whenever the user opens the form.

like image 166
iDevlop Avatar answered Dec 21 '22 05:12

iDevlop