Tom, it sounds like Access is enforing a relation that you cannot see, and
it does not even show up when you "Show All".
You can programmatically list the relations using the code below, and you
can also use the Delete method of the Relations collection to get rid of a
hidden relation once you know its name. If you are comfortable with code,
that might be the way to go.
Function ShowRel()
'Purpose: List the relations to the Immediate Window.
Dim db As DAO.Database
Dim rel As DAO.Relation
Set db = DBEngine(0)(0)
For Each rel In db.Relations
Debug.Print rel.Name, rel.Table, rel.ForeignTable
Next
Set rel = Nothing
Set db = Nothing
End Function
If you are still stuck, the code in this link deletes ALL the relationship
in your database. After compacting, you can then rebuild the ones you want:
http://members.iinet.net.au/~allenbrowne/DelRel.html
The most likely cause for the problem is Name Autocorrect. Uncheck the boxes
under Tools | Options | General | Name AutoCorrect, and then compact the
database so the problem does not recur. More information about these
problems:
http://members.iinet.net.au/~allenbrowne/bug-03.html
As a last resort, you can always get Access to rebuild your database by
creating a new one (File | New) and importing everything from the problem
one (File | Get External | Import). In that dialog there is an Options
button, which allows you to NOT import the relations.
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users -
http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
"Tom" <(E-Mail Removed)> wrote in message
news:B1186956-5F97-48B9-9764-(E-Mail Removed)...
>
> I am using Access 2000, and had a relationship setup to link 2 tables
> together. I later decided to change the design and delete the link. The
> link
> is not showing up in "Relationhips" view, and when I try to add a record
> it
> says I can't because the record doesn't exist in the related table. It
> says
> to break the link before I can change, but I can't because it doesn't show
> up. HELP
>
> Thanks,
>
> Tom
> --
> When eveythings coming at you at once, you're in the wrong lane.