Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 4
ComboBox Class
ComboBox Properties
 SelectedIndex Property
Collapse All/Expand All Collapse All
This page is specific to
Microsoft Visual Studio 2010/.NET Framework 4

Other versions are also available for the following:
.NET Framework Class Library
ComboBox..::.SelectedIndex Property

Gets or sets the index specifying the currently selected item.

Namespace:  System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)
Visual Basic
<BrowsableAttribute(False)> _
Public Overrides Property SelectedIndex As Integer
C#
[BrowsableAttribute(false)]
public override int SelectedIndex { get; set; }
Visual C++
[BrowsableAttribute(false)]
public:
virtual property int SelectedIndex {
    int get () override;
    void set (int value) override;
}
F#
[<BrowsableAttribute(false)>]
abstract SelectedIndex : int with get, set
[<BrowsableAttribute(false)>]
override SelectedIndex : int with get, set

Property Value

Type: System..::.Int32
A zero-based index of the currently selected item. A value of negative one (-1) is returned if no item is selected.
ExceptionCondition
ArgumentOutOfRangeException

The specified index is less than or equal to -2.

-or-

The specified index is greater than or equal to the number of items in the combo box.

This property indicates the zero-based index of the currently selected item in the combo box list. Setting a new index raises the SelectedIndexChanged event.

SelectedIndex, SelectedValue, and FormattingEnabled are related as follows:

NoteNote

To deselect the currently selected item, set the SelectedIndex to -1. You cannot set the SelectedIndex of a ComboBox item to -1 if the item is a data-bound item.

The following code example show how to use the FindString method and SelectedIndex property. The example is part of a complete example in the ComboBox class overview.

Visual Basic
Private Sub findButton_Click(ByVal sender As Object, ByVal e As System.EventArgs)
    Dim index As Integer
    index = comboBox1.FindString(textBox2.Text)
    comboBox1.SelectedIndex = index
End Sub
C#
private void findButton_Click(object sender, System.EventArgs e) {
    int index = comboBox1.FindString(textBox2.Text);
    comboBox1.SelectedIndex = index;
}
Visual C++
void findButton_Click( Object^ sender, System::EventArgs^ e )
{
   int index = comboBox1->FindString( textBox2->Text );
   comboBox1->SelectedIndex = index;
}

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Article unclear      whiteheadw   |   Edit   |   Show History
Since a bound combo-box cannot have a selected index set to -1, how would one clear the selected index programmatically (maybe writing directly to the bound datatable and resetting bindings?) Also, it would be helpful if the article made it clear whether or not a bound blank combo-box (due to dbNull.Value in underlying datatable when bound SelectedValue is loaded) would evaluate to -1, or if this would throw an exception.

Cheers.
Tags What's this?: Add a tag
Flag as ContentBug
Setting -1 as the selected index      John Willkie   |   Edit   |   Show History
This item doesn't mention explicitly what happens if -1 is set as the selected index. From the exception language, one can assume that -1 is valid, but the behavior of the control when -1 is set as selectedindex is not mentioned.
Tags What's this?: Add a tag
Flag as ContentBug
Processing
© 2012 Microsoft. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker