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

Setting the Value property to "1" should do the trick. You can do this
through code or though the properties window.


susan wrote:
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