PC Review


Reply
Thread Tools Rate Thread

Identifying Linked Tables

 
 
Synergy
Guest
Posts: n/a
 
      10th Nov 2003
Hello,

I would like to iterate through the tables in my DB and populate a table
with the names of all linked tables, but cannot find a property to identify
the Lined tables. Is there one?

God Bless,

Mark A. Sam


 
Reply With Quote
 
 
 
 
Rick Brandt
Guest
Posts: n/a
 
      10th Nov 2003
"Synergy" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> Hello,
>
> I would like to iterate through the tables in my DB and populate a table
> with the names of all linked tables, but cannot find a property to

identify
> the Lined tables. Is there one?


If the Connect property of the TableDef is not blank, then it is a linked
table.


--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com


 
Reply With Quote
 
Peter Russell
Guest
Posts: n/a
 
      10th Nov 2003
Synergy previously wrote:

> Hello,
>
> I would like to iterate through the tables in my DB and populate a table
> with the names of all linked tables, but cannot find a property to
> identify
> the Lined tables. Is there one?
>
> God Bless,
>
> Mark A. Sam
>
>
>

Using DAO tabledefs you can test the tabledef.Connect property for not ""

Regards

Peter Russell
 
Reply With Quote
 
Synergy
Guest
Posts: n/a
 
      10th Nov 2003
Thanks, that is what I need.


 
Reply With Quote
 
Van T. Dinh
Guest
Posts: n/a
 
      10th Nov 2003
A Query with the following SQL String:

SELECT MSysObjects.Name
FROM MSysObjects
WHERE (((MSysObjects.Name) Not Like "MSys*" And
(MSysObjects.Name)<>"Engine")
AND ((MSysObjects.Type)=6));

Should give you the names of all linked Tables.

--
HTH
Van T. Dinh
MVP (Access)



"Synergy" <(E-Mail Removed)> wrote in message
news:#(E-Mail Removed)...
> Hello,
>
> I would like to iterate through the tables in my DB and populate a table
> with the names of all linked tables, but cannot find a property to

identify
> the Lined tables. Is there one?
>
> God Bless,
>
> Mark A. Sam
>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Identifying Linked s/sheets Kendo666 Microsoft Excel Programming 0 13th May 2008 04:34 PM
Appending Records from Linked Tables to the *Real* Linked Tables tbl Microsoft Access Queries 2 22nd Jun 2006 02:42 AM
Names of Linked Tables do not show up in linked table manager =?Utf-8?B?S2VuIEo=?= Microsoft Access 4 3rd May 2005 01:00 AM
Identifying cells linked to other workbooks routeram Microsoft Excel Misc 1 18th Jun 2004 01:18 AM
Identifying Linked Tables Synergy Microsoft Access Form Coding 3 10th Nov 2003 04:20 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:19 PM.