Help

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?
 
G

ghetto_banjo

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top