View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
susan susan is offline
external usenet poster
 
Posts: 10
Default How does one show an intital value in the combobox

I have a simple combobox with numbers:
Private Sub ComboBox7_DropButtonClick()
ComboBox7.List = Array("1", "2", "3", "4", "5", "6", "7", "8", "9",
"10")
End Sub

I would like the "1" to appear as a default. I have tried but cant
find anything for this!

Thanks
Mike