In the client table, the primary key is Client_ID, which is an autonumber (long int) and I have that set up so there can't be any duplicate Client_IDs.
In the contacts table, the primary key is Contact_ID and I have another field which is named Client_ID and I have it set to a long int and it is indexed so that there can be duplicates in the table. I want this to be a foreign key, but I don't know if I have to set that somewhere.
Thanks!