visible after update

awake2424

Registered User.
Local time
Today, 15:11
Joined
Oct 31, 2007
Messages
479
After Update code:
Code:
 Private Sub Check237_Click()
    Me.Text239.Visible = Check237
End Sub

Form On-Current code:
Code:
 Private Sub Form_Current()
If Me![Check237] Then
   Me![Text239].Visible = True
   End If
End Sub

I set the visible property of Text239 to "NO" and then put the code above in the on-current of the form. The textbox is not visible on the form, but the text saves to the table it is linked to. Can it also show on the form if check237 is selected? Thanks
 

Users who are viewing this thread

Back
Top Bottom