Any help would be great,
Thanks everyone,
Jen
It would have been helpful for you to let us know what your code
actually is to "grey out" the control, so as not to just tell you to
do the same thing as is now not working.
The following should work.
You need top place the below code in 2 places.
Place this code in the Check Box AfterUpdate event as well as the
Form's Current event:
Me.[ControlName].Enabled = (Me.[CheckBoxName] = 0)
Substitute your actual control names.
--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
Then when i click Debug i get the following code highlighted in yellow
Me.[Manager].Enabled = (Me.[Check39] = 0)
I tried this code with the square brackets in and out and neither worked
Thanks,
Jen
fredg wrote:
>> Hi Guys,
>> I'm trying to get a control on a form to become greyed out when i tick a
>[quoted text clipped - 5 lines]
What happens if you use:
Me.[Manager].Enabled = (Nz(Me.[Check39] ,0)= 0)
Thanks again,
Jen
fredg wrote:
>> Hi Fred,
>> Thanks for the reply. I tried your suggestion and it worked fine in the
>[quoted text clipped - 29 lines]