Runtime error 2448

K

Kou Vang

For some reason I cannot assign any of my bound textboxes any values? I have
checked the design of the tables, the data that should go into the textboxes,
nothing. I was actually assigning values to the controls earlier in the week
and now nothing. What could be the cause of this?

me.control.value = x

ERROR!
 
B

bcap

Error 2448:

"You can't assign a value to this object. The object may be a control on a
read-only form."

Maybe your form is read-only? Perhaps you have inadvertently changed it's
AllowEdits and/or AllowAdditions property, or perhaps you've changed the
record source in such a way that it's now a non-updateable query.
 
Top