Link Table

  • Thread starter Thread starter 1
  • Start date Start date
1

1

Thank You Very Much For your help
First Question:
Is There any way to linked table without (open the dialogue box link table)
because I have The Path of My Backend Data Base?

Second Question:
If I have A NETWORK and I know also the name of the SERVER and The PATH of
the BACK END DATA BASE… How do link table also without open the link
Dialogue box.

NOTES:
1- 1- (Third Question) The Back end Data Base Is Secured by using
Password..
2- I’m using Back end and Front end system..

The Question is posted to (tablesdbdesign) (FormsCoding)
 
Set the Connect property of the TableDef, and remember to RefreshLink.

You can use a UNC name in the Connect property, e.g.:

dbengine(0)(0).TableDefs("MyTable").Connect = _
";DATABASE=\\MyServer\MyPath\MyFile.mdb"
 
Back
Top