I have an Access DB on a network folder. I have an Excel file that connects to the DB using vba code. Problem is whenever I'm opening the DB through Access, other users, who have read-only permission to the folder, are getting "data link properties" dialog and can't go on.
How can I solve it?
here's the vba code in excel:
"OLEDB;Provider=Microsoft.ACE.OLEDB.12.0;
Password="""";
User ID=Admin;
Data Source=\\file.accdb;
Persist Security Info=False;
Mode=Read;
Extended Properties="""";
Jet OLEDB:System database="""";
Jet OLEDB:Registry Path="""";
Jet OLEDB:Database Password="""";
Jet OLEDB:Engine Type=6;
Jet OLEDB:Database Locking Mode=0;
Jet OLEDB:Global Partial Bulk Ops=2;
Jet OLEDB:Global Bulk Transactions=1;
Jet OLEDB:New Database Password="""";
Jet OLEDB:Create System Database=False;
Jet OLEDB:Encrypt Database=False;
Jet OLEDB:Don't Copy Locale on Compact=False;
Jet OLEDB:Compact Without Replica Repair=False;
Jet OLEDB:SFP=False;
Jet OLEDB:Support Complex Data=False;
Jet OLEDB:Bypass UserInfo Validation=False;
Jet OLEDB:Limited DB Caching=False;
Jet OLEDB:Bypass ChoiceField Validation=False" _
Thanks, Udi