combobox

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.
 
M

Marshall Barton

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
 
Top