combobox

  • Thread starter Thread starter Dan
  • Start date Start date
D

Dan

How do I clear the contents of the text box which is a part of the combobox?
I guess this is the same code that makes no selection.

VBA code syntax please.

Thanks.
 
Dan said:
How do I clear the contents of the text box which is a part of the combobox?
I guess this is the same code that makes no selection.


The usual way is:

Me.thecombobox = Null
 
Back
Top