IE combobox 問題
請問各位高手
我參考下面文章透過OlePropertyGet,可以填入帳號密碼
http://topic.csdn.net/u/20120507/13/63f1e9ef-eb81-4357-8c7d-2549519805e9.html
現在又遇到一個新的問題
就是發現所要控制的網頁中的combobox option並沒有value值
Ex:
<select name="city" id="city">
<option selected>test0</option>
<option >test1</option>
<option >test4</option>
<option >test3</option>
<option >test2</option>
<option >test5</option>
</select></TD>
請問我該如何控制我想要選擇的option
[解决办法]
Variant vTag = vAllTag.OlePropertyGet("city");vTag.OlePropertySet("selectedIndex", 2);