Thread: Relationships
View Single Post
  #10  
Old February 17th, 2010, 10:30 PM posted to microsoft.public.access.tablesdbdesign
Alex Hammerstein
external usenet poster
 
Posts: 70
Default Relationships

Thanks John - will tuck that one away !!

A


On 17/02/2010 21:42, in article ,
"John W. Vinson" wrote:

On Wed, 17 Feb 2010 15:59:31 +0000, Alex Hammerstein wrote:

Hi

I am trying to change the field type in a table, from text to Number, and I
am getting an error message saying that I need to delete relationships
first. When I look at the relationship window, and scroll
left/right/up/down, there are no tables in the window. I have selected Show
All and one table is displayed.

However if I select Database documenter relationships, it is showing that
there is a relationship

Can someone tell me what's happening?

Tks


It sounds like you've resolved it, but just in case you or someone else runs
into this, here's a little function that might help:

Sub ShowAllRelations()
Dim db As DAO.Database
Dim rel As Relation
Dim fld As Field
Set db = CurrentDb
For Each rel In db.Relations
Debug.Print "Relation "; rel.Name, rel.Table, rel.ForeignTable
For Each fld In rel.Fields
Debug.Print fld.Name; " linked to "; fld.ForeignName
Next fld
Next rel
End Sub