0
I am trying through VBA in Excel, fill a combobox on a website.
But when I run the code, that error message comes up saying that "the object does not accept this property or method". The part of the HTML code of the website is this:
The Combobox I need to fill is type "text", and I will insert a zip code:
My code is written like this:
IE.Document.getElementByName("zipcode").innertext = "13214661"
I’ve already altered it, trying to use the document.all
, document.GetElementByID
, document.GetElementByClass
, etc. Anyway, even not knowing HTML, I made some attempts. Someone can help me?
Without the whole HTML structure it’s hard to say, but can be inside a frame, or there is some event that needs to be triggered, for example the onchange event
– danieltakeshi