Thread: Combo box help?
View Single Post
(#1)
Old
Sifter is Offline
Master of the Post
Sifter is on a distinguished road
 
Posts: 309
Join Date: Jul 2006
Location: Stockton, California
Send a message via AIM to Sifter Send a message via MSN to Sifter Send a message via Yahoo to Sifter
Default Combo box help? - 08-14-2006, 03:27 AM

Im working on using a combo box with a webbrowser... this should be working...
Code:
Private Sub WebBrowser4_NavigateComplete2(ByVal pDisp As Object, URL As Variant)
Combo1.AddItem WebBrowser4.LocationURL
End Sub
But it adds the item more than once... usually 3 times. Any way I can make it so that if the item being added is already on the list, it doesnt ad it? And also, is there a way to make it so that it adds the item to the top of teh list, instead of the bottom?
Reply With Quote