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!

error 3027 HELP HELP AND DOUBLE HELP

Status
Not open for further replies.

Killa

Programmer
Oct 19, 2001
56
US
I am having a problem i think its to do with the access database security

i open a new recordset as below on my computer this allows me full access to edit the newly created recordset BUT if i run this on another computer i get the 3027 error

I've checked the file and folder permissions and they are ok


how can i get round this ?

what username does dao pass to the database? if one is not supplied is it the log on one or the one from the microsoft application that invoked it or the default admin one?


Dim DbJobmemo As DAO.Database
Dim rsjob As DAO.Recordset
Query$ = "SELECT [Job memo].* "
Query$ = Query$ & "FROM [Job memo] "
Query$ = Query$ & "WHERE ((([Job memo].[Job No])=""" & ProjectNumber & """));"
' load specific data from fromject number
Set DbJobmemo = OpenDatabase("some file")
Set rsjob = DbJobmemo_OpenRecordset(Query$)
rsjob.Edit
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top