RiverGuy,
PLEASE read some about data normalization before making suggestions on table structure. Your suggestion for ten repeating fields is contrary to one of the three cardinal rules of database design, and will lead to many problems.
Your next suggestion, about the ten textboxes is a lot more on target, though would require unbound controls and careful programming.
The way this should be dealt with, Tasuki, is through forms and/or code. Access does not provide for this sort of validation at the table level. In a well designed database application, the users will not have the ability to touch the tables or queries directly, which allows you to control what they do to the data to a much greater degree.
Probably the best way to handle this situation is to have a main form and a subform. When the main form goes to a new record, and when a new record is added to the subform, run code to check how many records there are on the subform. If it's ten, change the AllowAdditions property to false.
For both of you, I have an article called Fundamentals of Relational Database Design on my website. It was written by Paul Litwin, a guru of Access development issues, and it it explains normalization quite well.
Hope this helps.
Jeremy
=============
Jeremy Wallace
Designing, Developing, and Deploying Access Databases Since 1995
Take a look at the Developer's section of the site for some helpful fundamentals.