0
Picture of Dropdown List Code選擇HTML下拉框中選擇使用VBA
我需要創建一個選擇從圖像列表中的下拉選項的宏。 我試過使用下面的代碼,其中NGR被定義爲列表中的值的字符串。
With ie.Document
Set dropOptions = .getElementsByTagName("select")
For Each o In dropOptions.Options
If o.Value = NGR Then
o.Selected = True
Exit For
End If
Next o
End With
我也試過:
ie.Document.all.Item("ddlGrowerRegs").Value = NGR
和
ie.Document.getelementbyid("_ct10_ContentPlaceHolder1_ddlGrowerRegs").Value = NGR
如果有人可以告訴我,我要去哪裏錯了或如何使用字符串NGR選擇下拉值那太好了。
謝謝