Hi
OK, if it will not let you delete from the system table, try the relationships collection
(from help)
A Relations collection contains stored Relation objects of a Database object (Microsoft Jet databases only).
Remarks
You can use the Relation object to create new relationships and examine existing relationships in your database. To add a Relation object to the Relations collection, first create it with the CreateRelation method, and then append it to the Relations collection with the Append method. This will save the Relation object when you close the Database object. To remove a Relation object from the collection, use the Delete method.
To refer to a Relation object in a collection by its ordinal number or by its Name property setting, use any of the following syntax forms:
Relations(0)
Relations("name"

Relations![name]
To use this you will need to have DAO library referenced.
Then something like
Dim DB as DAO.Database
Dim i as Integer
Set db = CurrentDb()
Do until Db.Relations.Count = 0
For i = 0 to Db.RElations.Count - 1
db.Relations(i).Delete
NExt i
Loop
Regards
Ken Reay
Freelance Solutions Developer
Boldon Information Systems Ltd
Website needs upgrading, but for now -
UK