Question

Is it possible to set the selectedIndex of a combobox based on its value, without having to iterate through the datasource?

I set the datasource like this:

caseDBTableAdapters.usersTableAdapter usersAdapter = new caseDBTableAdapters.usersTableAdapter();
            caseDB.usersDataTable users;
            users = usersAdapter.GetUsers();

            cbOwner.DisplayMember = "fullName";
            cbOwner.ValueMember = "userId";
            cbOwner.DataSource = users;

It seems less elegant to have to iterate through the table fx. by doing:

int counter = 0;
            foreach (caseDB.usersRow usersRow in users)
            {

                if (usersRow.userId == selectedUser)
                {

                    cbOwner.SelectedIndex = counter;

                }
                counter++;
            }
Was it helpful?

Solution

Try assing

comboBox.SelectedValue = "value";

or

comboBox.SelectedItem = item;

After question edit:

Set SelectedValue to selectedUser:

cbOwner.SelectedValue = selectedUser;

OTHER TIPS

When you use the DisplayMember and ValueMember properties, set SelectedValue.

Otherwise, set SelectedItem.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top