Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a databound ComboBox on my form. Is there any way that I can make the first field blank.

I can do this with a DropDownList in the HTML part of .Net but is there a way to do it for a ComboBox?

Thanks

share|improve this question

3 Answers

You can insert a blank entry into data source.

Public Class Data
 Public Property No() As Integer
 Public Property Name() As String
End Class

and List(of Data),

    Dim mlist As New List(Of Data)() From
       {
           New Data() With {.Name = "", .No = 0},
           New Data() With {.Name = "One", .No = 1},
           New Data() With {.Name = "Two", .No = 2}
       }

    ComboBox1.DataSource = mlist
    ComboBox1.DisplayMember = "Name"
    ComboBox1.ValueMember = "No"
share|improve this answer
what I did was ComboBox1.SelectedValue = -1 – user765942 Oct 11 '11 at 10:42
1  
@AVD actually your answer is what answers his question, thing is he had framed his question wrong – Deeptechtons Oct 12 '11 at 4:26
up vote 0 down vote accepted

This is the code I used to overcome the problem...

ComboBox1.SelectedValue = -1

share|improve this answer
ComboBox1.SelectedValue = -1 

didn't work for me but this did:

ComboBox1.SelectedIndex = -1 

I would have though -1 would have been an invalid index value, but obviously not.

Kristian

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.