Autonumber

  • Thread starter Thread starter Samuel
  • Start date Start date
S

Samuel

How do you remove the AutoNumber feature from the bottom
of a form when it is opened? I only want the form for
viewing and I would like to remove the AutoNumber feature
at the bottom after the form is opened.

Sam
 
Samuel said:
How do you remove the AutoNumber feature from the bottom
of a form when it is opened? I only want the form for
viewing and I would like to remove the AutoNumber feature
at the bottom after the form is opened.

An AutoNumber is a Datatype that automatically assigns a long integer value
to new records as they are created, often used as a primary key for the
table.

The Navigation Bar is the tool shown at the bottom of forms by default that
allows the user to move to different records in the form's RecordSet.

As they have nothing to do with each other, which one of these are you
talking about ?

If you don't want an AutoNumber in your *table* then go into design view of
the table and remove it. If you don't want to see the Navigation Bar in
your *form* then go into design view of the form and set the Navigation Bar
property of the form to No.
 
Back
Top