After Update code:
Form On-Current code:
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
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