View Single Post
  #7   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default combo box beginner question...

Good catch. Thanks.

--
Regards,
Tom Ogilvy



"Norman Jones" wrote in message
...
Hi Thomas,

In additiion to Tom's suggestion.

Change the lines:

AddItem "A"
AddItem "B"

to:
. AddItem "A"
.AddItem "B"


(Prepend with .)

---
Regards,
Norman



"thomas" wrote in message
...
I've tried to find how to make choices in a combo box but had no luck.
This
is the code I wrote, but it doesn't show up in the combo box:


Private Sub Internet_Change()
With Internet
AddItem "A"
AddItem "B"
End With
End Sub


Why doesn't this show up when form is ran???
Thanks ahead of time,
Tom