Setting combobox to nothing

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

Guest

What's the best way to deselect a combobox? In .NET, you can simply do
ComboboxName.SelectedIndex = -1.
 
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
 
Back
Top