Hello all,
Im new to VB so go easy on me :-D
Im trying to autofill a html form and all textboxes and textarea is working ok.. I now have a problem with a combobox1.
I added the items below to the combobox1. So whenever i choose one of those items it needs to choose the same value on the website dropdownbox.
ComboBox1
DVDR
High Definition
International, Non English
This is the HTML file:
<select name=forum_number id="forum_number">
<option value=""> Choose one.. </option>
<option value=41> DVDR </option>
<option value=98> High Definition </option>
<option value=57> International, Non English </option>
</select>
I tried something like this i found on the web.. But is not dynamic..
Dim htmlselect As HtmlElement = WebBrowser1.Document.All.Item("forum_number")
For Each opt As HtmlElement In htmlselect.All
opt.SetAttribute("value", "ComboBox1.Text")
opt.InnerText = "ComboBox1.Text"
Hope someone can help me!
Greetz