Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

put value in web dropdown

2009luca

Programmer
Jul 27, 2013
227
IT
This code select an item in dropdown web page.
Possibe to update the value of Z in the button?

...
Set DropDown = HTML.getElementById("anno")

For Each dropOption In DropDown.getElementsByTagName("option")
If dropOption.innerText = Z Then
DropDown.Value = dropOption.Value
DoEvents
dropOption.Selected = True
Exit For
End If
Next dropOption
...

the site:

 

Attachments

  • Immagine.jpg
    Immagine.jpg
    29.1 KB · Views: 0

Part and Inventory Search

Sponsor

Back
Top