[RESOLVED] How Do I fill in a dropbox on a form?
Any Help !! I need to filling in a dorp box on a web form here the code
<tr >
<td align="right" width="150" class="yregfieldtitle"><span class="yregasterisk">*</span> <LABEL for="sex" accesskey="G">Gender:</LABEL></td>
<td nowrap width="10"><spacer type="horizontal" width="10"></td>
<td align="left" width="560">
<select name=".sx"id="sex"><option value="">[Select]
<option value="m">
Male
<option value="f">
Female</select>
</td>
Iv tried WebBrowser1.Document.getElementById("sex").Value = M
and WebBrowser1.Document.getElementById(".sx").Value = M :eek2:
Re: How Do I fill in a dropbox on a form?
WebBrowser1.Document.getElementById(".sx").Value = "m"
Re: How Do I fill in a dropbox on a form?
Quote:
Originally Posted by Static
WebBrowser1.Document.getElementById(".sx").Value = "m"
Thank Static works great!!!!!
Re: [RESOLVED] How Do I fill in a dropbox on a form?