Setting combobox to nothing

B

blue_nirvana

What's the best way to deselect a combobox? In .NET, you can simply do
ComboboxName.SelectedIndex = -1.
 
M

Marshall Barton

blue_nirvana said:
What's the best way to deselect a combobox? In .NET, you can simply do
ComboboxName.SelectedIndex = -1.


In most cases:

ComboboxName = Null
 
Top