get all Form Item Names with webbrowser control
This will get all Form Item Names with webbrowser control.
AI
AIサマリー: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.
ソースコード
Public Function GetAllFormNames(doc As HTMLDocument, Form As Integer) As String <p> Dim innames(20) As String <p> Dim max As Integer <p> max = doc.Forms(Form).length <p> For i = 0 To max <p> If Not (doc.Forms(Form).Item(i) Is Nothing) Then <p> innames(i) = doc.Forms(Form).Item(i).name <p> Debug.Print innames(i) <p> End If <p> Next i <p> End Function
オリジナルのコメント (3)
Wayback Machineから復元