Please help w/eliminating blank row on forms

T

TotallyConfused

How do you make the last blank row go away in a form? Why is there a blank
row? Any help will be greatly appreciated. Thank you.
 
J

John Vinson

How do you make the last blank row go away in a form? Why is there a blank
row? Any help will be greatly appreciated. Thank you.

There's a blank row because - usually - users want to be able to add
new records to a table, rather than just editing existing records. The
blank record is the "new record" into which that information can be
typed.

If you wish to prevent them from doing so, set the Form's Allow
Additions property to No.

John W. Vinson[MVP]
 
T

TotallyConfused

If I set the Additions property to No, will this also prevent the user from
updating certain fields? or does this just pertain to adding rows?
 
S

Sprinks

Edits will still be allowed. Their status is controlled by the AllowEdits
property.

Sprinks
 
Top