views:

37

answers:

1

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....

A: 

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

iDevlop