Creating a sample database

  • Thread starter Thread starter Jim Z.
  • Start date Start date
J

Jim Z.

I would like to make a sample database that limits the
amount of entries. How can this be acomplished.
 
I would like to make a sample database that limits the
amount of entries. How can this be acomplished.

One sneaky way is to have an Autonumber or (Long) Integer primary key
with a validation rule
0 AND <= 100

to limit the table to 100 entries. Of course you need to ensure that
the user can't open the table in design view and change the rule!
 
Well hey, even "I" could do that!
Thanks for the tip John, I might use this.

Jeff Conrad
Bend, Oregon
 
Back
Top