View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
papou papou is offline
external usenet poster
 
Posts: 110
Default Set the value of a combobox

Hello Bruce
If combo from the Tools Box, try this:
Sheet1.ComboBox1.Value = 3

HTH
Cordially
Pascal

"Bruce" a écrit dans le message de
...
I have a combobox that I want to set the value of as a default, but I get

the
error
'Object doesn't support this property or method'.

Any ideas on how to fix?

Bruce

Sub reset()
Set Sheets("Sheet1").Shapes("ComboBox1").Value = 3
End Sub