VBAのIE(InternetExplorer)制御に便利なサブルーチンを紹介しています。
Sub formClick(objIE As InternetExplorer, _
nameValue As String, _
tagValue As String)
'form要素のクリック
For Each objTag In objIE.document.getElementsByTagName("input")
If objTag.Name = nameValue And objTag.Value = tagValue Then
objTag.Click
Exit For
End If
Next
End Sub
引数名 | データ型 | 内容 | 値の事例 | 初期値 | 省略 |
---|---|---|---|---|---|
objIE | InternetExplorer | IEオブジェクト | objIE,objIE2 | × | |
nameValue | String | name属性の名前文字列 | "sex","lcolor" | × | |
tagValue | String | 目的エレメントのクリックする値文字列 | "女","赤","黄" | × |
こちらは、おなじみの内容です。
「objIE」はオブジェクトを入力します。
「Name」はname属性を値を入力します。
「tagValue」には、クリックする値を入力します。