READ ONLY ERROR

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,
Does anyone know how I can fix this.....

It means that the control is set to read only (Enabled = No); that the
Form is read only (Allow Edits = No); or that the subform is based on
a Query which is not updateable.

I have a subform on my main form and when i go to select a drop down from
that subform...the read only error comes up....the information is stored,
however the error still comes up????

help
RW
 
If you open the main form with Allow Edits set to No, the subform will be
locked.

The subform also as its own AllowEdits property.
Also make sure the subform's RecordSourceType property is Dynaset.

If the subform is based on a query, try running the query directly from the
Database window. Can you edit values there? If not, you won't be able to
edit in the form based on the query either. For a list of things to look for
to fix the query, see:
Why is my query read-only?
at:
http://allenbrowne.com/ser-61.html

If you can edit in other controls, just not in the combo:
a) Make sure its Enabled property is Yes, and Locked is No.
b) Temporarily remove any code from the combo's events.
c) Make sure the combo's RowSource is valid, and the Bound Column is the
correct one.
 
Thanks man....I will give that a try

Allen Browne said:
If you open the main form with Allow Edits set to No, the subform will be
locked.

The subform also as its own AllowEdits property.
Also make sure the subform's RecordSourceType property is Dynaset.

If the subform is based on a query, try running the query directly from the
Database window. Can you edit values there? If not, you won't be able to
edit in the form based on the query either. For a list of things to look for
to fix the query, see:
Why is my query read-only?
at:
http://allenbrowne.com/ser-61.html

If you can edit in other controls, just not in the combo:
a) Make sure its Enabled property is Yes, and Locked is No.
b) Temporarily remove any code from the combo's events.
c) Make sure the combo's RowSource is valid, and the Bound Column is the
correct one.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Parameter Value error in a Subform 0
READ ONLY 4
Making subform read only 2
Subform problem 1
Subform Data Entry Setting 0
Subform - Access 2003 2
Admin = form works User = form fails 1
Access Reference Subform's Control 0

Back
Top