S sphere Registered User. Local time Today, 23:24 Joined May 21, 2001 Messages 19 Jun 4, 2001 #1 i want a field to become visible or pop-up only when a certain checkbox is marked... now how do i get that done?
i want a field to become visible or pop-up only when a certain checkbox is marked... now how do i get that done?
J Jack Cowley Registered User. Local time Today, 23:24 Joined Aug 7, 2000 Messages 2,639 Jun 4, 2001 #2 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....
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....