Hy,
I have a problem with my form. Every time when I open my form, I see my
first record, and it is not form with empty filds. Then, I have to delete
those fields and to enter new record.
How to open empty form?
Allen Browne - 03 Apr 2008 10:02 GMT
Set the form's Data Entry property to Yes (in the Properties box.)
It will then open for entering a new record, instead of showing the existing
records in your table.

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
> Hy,
> I have a problem with my form. Every time when I open my form, I see my
> first record, and it is not form with empty filds. Then, I have to delete
> those fields and to enter new record.
> How to open empty form?
Stockwell43 - 03 Apr 2008 16:55 GMT
Place this in the Open Event of your form:
DoCmd.GoToRecord , , acNewRec
> Hy,
> I have a problem with my form. Every time when I open my form, I see my
> first record, and it is not form with empty filds. Then, I have to delete
> those fields and to enter new record.
> How to open empty form?