hiding checkboxes in continuous form (1 Viewer)

GuidoNTS

Registered User.
Local time
Today, 14:47
Joined
May 27, 2008
Messages
13
Hello

I'm new on this list. ;)

On a form I have two checkboxes. I want to hide that one that is not checked on.

Can someone help me for this?

Thank you
 

KenHigg

Registered User
Local time
Today, 08:47
Joined
Jun 9, 2004
Messages
13,327
Technically, if you do not want to be able to set the check box off and on then it seems you would not need the functionality of a check box control. All you want is something telling the user that the value is true. In the forms underlying query I would do something like the following and use it as the control source for a text box:

Expr1: IIf([myYesNoFiledName],"Yes","")
 

GuidoNTS

Registered User.
Local time
Today, 14:47
Joined
May 27, 2008
Messages
13
I will clear it a while

I have records that someone had to follow up and others that must be followed up by many people. (it is always an OR never an AND) I have put those records in a separate file. On the form I let see all the records of that file. If the records must be followed up by one person the checkbox by that person is set to yes and I want that the checkbox put by all the persons is or invisible or enabled, so that it can not be checked on because that creates a problems in my table.

See attached sample
 

Users who are viewing this thread

Top Bottom