How? Change a control to not updatable in a macro linked to a for

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

Guest

When a user checks a box on a form, I want to change another control not
updatable.
More specifically, it is giving the user to specifically limit (or identify
criteria or range of data) or check a box to "select all". If the box is
checked, it won't give the user the option to do the other - selecting a
specific range of data.

Can anyone help?
 
in the checkbox's AfterUpdate event, create a macro with the following
settings, as

Action: SetValue
Item: [MyTextBoxName].[Enabled]
Expression: Not [MyCheckboxName]

substitute the correct checkbox control name and textbox control name, of
course.

hth
 
Back
Top