dis-appearing act won't work! (1 Viewer)

sphere

Registered User.
Local time
Today, 20:24
Joined
May 21, 2001
Messages
19
i want a field to become visible or pop-up only when a certain checkbox is marked...
now how do i get that done?
 

Jack Cowley

Registered User.
Local time
Today, 20:24
Joined
Aug 7, 2000
Messages
2,639
If Me.Checkbox = -1 then
Me.OtherField.Visible = True
Else
Me.OtherField.Visible = False

You can put this code in the On Current event of your form or the After Update event of the checkbox, depending on when you want to trigger the code....
 

Users who are viewing this thread

Top Bottom