Hiding a combobox or textbox in datasheet view

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have subform that has a default view of datasheet. I have a combobox that
when a user selects a certain selection from the combobox, a certain
form(call it frmfurtherexplanation) will popup for them to enter free text
information, when closed, the information will appear on the textbox that is
ontop of the combobox.

Now how will I be able to view information that is in the textbox on the
datasheet view without creating a new column?
 
Hey JOM, I'm not sure I quite understand what you are trying to accomplish or
why you have a textbox on top of combo box so if I am way off, let me know.
If you are simply trying to hide the combo box, this can be accomplished by:

cboComboBoxName.Visible = False

To make it visible again:

cboComboBoxName.Visible = True
 

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.

Ask a Question

Back
Top