Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

LINK TABLE ERROR 3033

Status
Not open for further replies.

SirTECH

Technical User
Jul 24, 2005
42
CA
I've used the following code to automatically refresh table links.
strCONN = ";DATABASE=" & strPATH & "MyDB_BE.mdb"
For Each tdf In CurrentDb.TableDefs
If tdf.Connect <> "" Then
tdf.Connect = strCONN
tdf.RefreshLink
End If
Next
It works fine for members of the Admin group, but all others get an error 3303 "no permissions for the table" however, the affected group does have permission.

I used a database password and appended ";PWD=" & password to the front of the variable strCONN. And I have removed the password. I used userlevel security on the B/E (the same as the one used on the F/E). And I reverted back to the unsecure BE.

Still I cannot get different user groups to refresh links to the B/E due to this error.

Any help would be appreciated.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top