Remove all items from a combo

X

XP

I'm blanking here, can someone help me remember what the command in VBA is to
clear all items from a ComboBox?

I thought it was something like:

Me!cboMyCombo.RemoveAllItems

But, I can't remember...
 
D

Duane Hookom

Not sure what your row source type is but you might try:
Me!cboMyCombo.RowSource = ""
 
Top