Where does ms access store passwords for linked tables? I have a table that occasionally loses it's password.
linked table
Collapse
X
-
Open the linked table in design mode. The select View/Properties and in the description the link will be visible with the UID and Password.
You can relink such a table using code like:
Just relace the <..> fields as needed.Code:Dim td As DAO.TableDef For Each td In CurrentDb.TableDefs If td.name = "<YouLinkedTableName>" Then td.Connect = "<YourNeededLinkWithUserID/Password>" td.RefreshLink End If Next
Nic;o)
Comment