
Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
>Thanks for your response. You were right of course. Some of the fields in the underlying query are not updatable. I guess I am more ignorant than I
thought I was. How do you control whether a field or a query is updatable?
Thank you, the refernce solved that problem. Now I ran into another:
I have a form with all controls (textboxes) updatable manually. When I try
to manipulate data in them by VBA code, e.g.
Me.DateJoined = Date or
Me.MFirst = "Joe"
I get the following error message;
Runtime error:'-2147352567 (80020009)' You can't assign a value to this
object.
Or, if I append .Value to the object's name:
Runtime error:'2448' You can't assign a value to this object.
It almost seems like the evil spirits lurking inside VBA don't want me to
use it.
> See whether the following helps:
> http://msdn.microsoft.com/library/en-us/off2000/html/acconDeterminingWhenCanUpda
teDataQueryS.asp
>
> >Thanks for your response. You were right of course. Some of the fields in
> the underlying query are not updatable. I guess I am more ignorant than I
> thought I was. How do you control whether a field or a query is updatable?
Douglas J. Steele - 01 Apr 2006 20:10 GMT
What are Me.DateJoined and Me.MFirst: the names of text boxes on your form,
the names of fields in your underlying recordsource, or both?
If both, change the names of your text boxes, and try updating the text
boxes, not the fields.

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
> Thank you, the refernce solved that problem. Now I ran into another:
>
[quoted text clipped - 18 lines]
>> thought I was. How do you control whether a field or a query is
>> updatable?