Blank record on entering form

  • Thread starter Thread starter Bhavin
  • Start date Start date
B

Bhavin

I have set up a form from a table but every time i enter
the form, there is a record automatically showing up -
usually the first in the table. Is there any way to have
the form customised so that the fields are blank and do
not actually show a record? (I still want it linked to the
table though).

Thanks.
 
The only way to show blank Fields / Controls for a bound Form is to make the
New Record the Current Record of the Form.

Use the GoToRecord Method in the Form_Load Event to make the New Record
current.

Check Access VB Help on the GoToRecord Method.
 
Back
Top