sphere
06-04-2001, 12:47 PM
i want a field to become visible or pop-up only when a certain checkbox is marked...
now how do i get that done?
now how do i get that done?
|
View Full Version : dis-appearing act won't work! sphere 06-04-2001, 12:47 PM 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 06-04-2001, 12:56 PM 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.... |