[SIZE=2]
DropDownList1.Items.Add("Select ...")
DropDownList1.Items.Add("Something 1")
DropDownList1.Items.Add("Something 2")
DropDownList1.Items.Add("Something 3")
[/SIZE]
[SIZE=2][COLOR=#0000ff]With[/COLOR][/SIZE][SIZE=2] DropDownList1
.Items(0).Selected = [/SIZE][SIZE=2][COLOR=#0000ff]True
[/COLOR][/SIZE][SIZE=2] .Items(0).Value = ""[/SIZE]
[SIZE=2] [COLOR=darkgreen]'also for the other items[/COLOR]
[/SIZE][SIZE=2][COLOR=#0000ff]End[/COLOR][/SIZE][SIZE=2][COLOR=#0000ff]With[/COLOR][/SIZE]
[COLOR=blue]For[/COLOR] i [COLOR=blue]as[/COLOR] integer = 0 [COLOR=blue]to[/COLOR] 3
DropDownList1.Items.Add("Something " & i)
[COLOR=blue]Next[/COLOR]