Hello
On a form I would like to display specific text boxes depending on a selection the user makes in a combo box on the same form. In the form load event the text boxes are visible = false.
Would the code be similar to this:
Private Sub ShowEntry()
If Me.cboEntry.Text = "Comments" Then
Me.txtComments.Visible = True
Me.txtQuestion.Visible = False
End If
End Sub
Thanks
Ron
On a form I would like to display specific text boxes depending on a selection the user makes in a combo box on the same form. In the form load event the text boxes are visible = false.
Would the code be similar to this:
Private Sub ShowEntry()
If Me.cboEntry.Text = "Comments" Then
Me.txtComments.Visible = True
Me.txtQuestion.Visible = False
End If
End Sub
Thanks
Ron