Quote Originally Posted by Crocus Crow
That should work, but why are you using an array, IE(0)? Only a single IE object should be needed -
[vba]
IE.Document.getElementById("list").SelectedIndex = 2
[/vba] - unless you are using an array of InternetExplorer objects. Post your code in full if you want more help.
I was working with several IE objects earlier, hence the array.

Quote Originally Posted by Crocus Crow
No, looking at the HTML source, there is no onclick or other event handler in the <select id="list" ...> element, so clicking it manually or by VBA doesn't trigger any Javascript function.
Ok, how does the website react to my mouseclick? I don't understand why the website won't reload the page when my VBA code changes the listbox value.