seeker said:
Why does form!frmHealthstatssecondcheck!cmbmembername.visible = true give
me
this error
cant find the field cmbmembername referred to in your expression.
cmbmembername is not a field it is a combo box on form
frmhealthstatssecondcheck
That doesn't look like an exact quote of your statement. If it were, things
would be capitalized differently. In questions like this, it is very
important that you copy and paste the failing statement into your message,
so that we don't go off on wild goose chases over your typos.
If the captialization is the *only* thing that isn't quoted accurately, then
there is an error in your form reference. It should be:
Forms!frmHealthstatssecondcheck
*not* :
form!frmHealthstatssecondcheck
However, that may just be a misquote on your part. If that isn't the
problem, double-check the exact spelling of the control name,
"cmbmembername". Capitalization doesn't matter, but correct spelling does.
Also, where is this statement being executed? Is in the code module of the
form, frmHealthstatssecondcheck? Is that form open when the statement is
executed?