santhosh23
Registered User.
- Local time
- Today, 14:24
- Joined
- Jul 21, 2015
- Messages
- 74
Hi ..
I created a db in access in which the users login and enter few information in subform which gets stored into a table. Everything was working fine. I just splitted my db into front end and back end . I used my front end to work the same.. but when i click the save button I got an 3073 error that operation must use an updateable query. The query is given below ,
CurrentDb.Execute "INSERT INTO RecordTable([User],[Barcode],[ToolCareJob],[Worked On Activity],[Start Time],[End Time],[Work Time])" & _
"VALUES ('" & Me.txtUser & " ' ,'" & Me.txtbarcode & "','" & Me.cboToolcarejob & "','" & Me.cboWorkedonactivity & "','" & Me.txtStartTime & "','" & Me.txtEndTime & "','" & Me.txtWorkTime & "')"
When i googled i found that it maybe due to read/write permissions but while creating both front end and back end I made it to full control... i wonder where did I go wrong
Anyhelp on this issue is really appreciated...
I created a db in access in which the users login and enter few information in subform which gets stored into a table. Everything was working fine. I just splitted my db into front end and back end . I used my front end to work the same.. but when i click the save button I got an 3073 error that operation must use an updateable query. The query is given below ,
CurrentDb.Execute "INSERT INTO RecordTable([User],[Barcode],[ToolCareJob],[Worked On Activity],[Start Time],[End Time],[Work Time])" & _
"VALUES ('" & Me.txtUser & " ' ,'" & Me.txtbarcode & "','" & Me.cboToolcarejob & "','" & Me.cboWorkedonactivity & "','" & Me.txtStartTime & "','" & Me.txtEndTime & "','" & Me.txtWorkTime & "')"
When i googled i found that it maybe due to read/write permissions but while creating both front end and back end I made it to full control... i wonder where did I go wrong
Anyhelp on this issue is really appreciated...