0
votes

This is basically the same question as "Click items in select box, and then display a text input." Except I am using MS Access. I want to display a text input field on a form when the user selects "other" from a combo box on the same form. How do I do this?

1

1 Answers

0
votes

Put something like this in the AfterUpdate event of the combo box

If me.cboMy_combo=”Other” then
    Me.txtSome_test.Visible =true
Else
    Me.txtSome_test.Visible =false
End if