'Select...' in ComboBox

  • Thread starter Thread starter Evan Camilleri
  • Start date Start date
E

Evan Camilleri

How do I add a column 'Select...' to a databound Combobox? ... So that
users will see that?
In windows application.

Evan Camilleri
 
You mean it shows up before they actually selects something?

ComboBox.Text = "Select...."

Hope it helps
Chris
 
Evan,

Programmatically/Runtime
combobox1.Items.Add("whatever") 'Whatever is a string or object

Design mode
Right-click combobox
select properties> items> enter whatever you want
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top