get all Form Item Names with webbrowser control
This will get all Form Item Names with webbrowser control.
Rate get all Form Item Names with webbrowser control
(3(3 Vote))
Public Function GetAllFormNames(doc As HTMLDocument, Form As Integer) As String
Dim innames(20) As String
Dim max As Integer
max = doc.Forms(Form).length
For i = 0 To max
If Not (doc.Forms(Form).Item(i) Is Nothing) Then
innames(i) = doc.Forms(Form).Item(i).name
Debug.Print innames(i)
End If
Next i
End Function
get all Form Item Names with webbrowser control Comments
No comments yet — be the first to post one!
Post a Comment