Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Combo Box List

Status
Not open for further replies.

dashen

Programmer
Jul 14, 2005
233
US
I am trying to programatically select an item in a combo box list and select only one item in the list. I tried to use the SelectIndexChange event, but it seems to do nothing. I can use radiobuttonlist as well, but neither one seems to be doing what I want it to. Is there any way around this? Can anyone give me a suggestion taht will work and be formulaic because I am trying to use many of them radiobuttonlists or comboxlists? Thanks.

Code:
    Protected Sub cblAssessType_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles cblAssessType.SelectedIndexChanged
        Dim temp As String
        temp = cblAssessType.SelectedValue
        cblAssessType.ClearSelection()
        cblAssessType.SelectedValue = temp
    End Sub
 
Because more than one can be selected. If for instance the value actually selected is one later.

Also, SelectedIndexChange doesn't seem to be run when I select something. I used breakpoints, and nothing.
 
I still don't understand what you are trying to do, but, in order for the event to fire, you need to set AutoPostBack = TRUE on the list box.
 
make sure mode=multi so you can select multiple options. you then need to loop through the list and set selected = true for each item you want to pre-select.

also remember to hold the ctrl/shift key when selecting multiple items.

Jason Meckley
Programmer
Specialty Bakers, Inc.
 
Because more than one can be selected.
I'm confused. Your initial post said:
... and select only one item in the list


-------------------------------------------------------

Mark,
[URL unfurl="true"]http://aspnetlibrary.com[/url]
[URL unfurl="true"]http://mdssolutions.co.uk[/url] - Delivering professional ASP.NET solutions
[URL unfurl="true"]http://weblogs.asp.net/marksmith[/url]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top