>I am aware of the basic effect of Enabled yes/no on a control on a form, and
> have used it to create read-only fields that pull values from other forms
[quoted text clipped - 5 lines]
> Many thanks
> CW
Enabled has to do with whether the user can place focus on the control. Locked
influences whether they can change the value. If you have a control that you
want to be read-only, but where the user might find it handy to be able to copy
the control's value to the clipboard, then you would use Locked = Yes rather
than Enabled = No.
Enabled = No (by itself) also changes the appearance of the control so if you
don't want that to happen you would use Locked = Yes or both Locked = Yes and
Enabled = No.

Signature
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
CW - 15 Jul 2007 15:04 GMT
Great explanation -all clear to me now
Many thanks
CW
> >I am aware of the basic effect of Enabled yes/no on a control on a form, and
> > have used it to create read-only fields that pull values from other forms
[quoted text clipped - 15 lines]
> don't want that to happen you would use Locked = Yes or both Locked = Yes and
> Enabled = No.
Enabled Locked Use
====== ===== ===
Yes Yes Normal, editable control
Yes No Display, allow focus and copy, but not edit.
No Yes No focus, no copy, normal display.
No No No focus, no copy, dimmed appearance.

Signature
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.
>I am aware of the basic effect of Enabled yes/no on a control on a form,
>and
[quoted text clipped - 8 lines]
> Many thanks
> CW
CW - 15 Jul 2007 15:06 GMT
Great summary - many thanks Allen
CW
> Enabled Locked Use
> ====== ===== ===
[quoted text clipped - 15 lines]
> > Many thanks
> > CW
missinglinq - 15 Jul 2007 15:07 GMT
You might want to look at that again, Allen!
>Enabled Locked Use
>====== ===== ===
[quoted text clipped - 8 lines]
>> Many thanks
>> CW

Signature
There's ALWAYS more than one way to skin a cat!
Answers/posts based on Access 2000