I have a form based on a calculated query.
To allow users to edit some of the non-calculated fields I change the form's recordsource to a non-calculated query, but I still get "Database or object is read only".
I tried putting "msgbox currentdb.udateable" just after where I change the recordsource and I get the message "True" so db should not be in read only state...
If I open the form with the non-calculated query as source to start with, I can update the fields just fine.
What do I need to add to my code after Form_frmMyform.RecordSource="qryWriteable" to allow writing to the recordset?
To allow users to edit some of the non-calculated fields I change the form's recordsource to a non-calculated query, but I still get "Database or object is read only".
I tried putting "msgbox currentdb.udateable" just after where I change the recordsource and I get the message "True" so db should not be in read only state...
If I open the form with the non-calculated query as source to start with, I can update the fields just fine.
What do I need to add to my code after Form_frmMyform.RecordSource="qryWriteable" to allow writing to the recordset?