Help

  • Thread starter Thread starter lmossolle
  • Start date Start date
L

lmossolle

I want to create a form that has a fiels called FAR_Name this will be a yes
or no, when yes is selected a yrs_exp field will be available. Could someone
walk me through this?
 
FAR_Name should be a check box.


In the After Update event of FAR_Name, use this code:

if me.FAR_Name then
yrs_exp.enabled = true
else
yrs_exp.enabled = false
end if


depending on how you want it to work, you might want to initially set
yrs_exp to disabled on the Open event of the form as well.
 
Back
Top