I have a combo box that is populated from a db, but i cannot figure out how to set the first item in the list to "Select an Item". Can anyone tell how I can do this? Here is my code for filling the combo box.
With cboTagname
.DataSource = dvTagname
.DisplayMember = "col001"
.ValueMember = "col001"
End With
Thanks in advance for the help
BK
With cboTagname
.DataSource = dvTagname
.DisplayMember = "col001"
.ValueMember = "col001"
End With
Thanks in advance for the help
BK