I guess you could stack a combobox and a textbox and set one to visible.
Sub MakeComboVisible(byval blnComboVisible As Boolean)
Me.cboWhatever.Visible = blnComboVisible
Me.txtWhatever.Visible = Not blnComboVisible
End Sub
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.