0

私は周りを見回しましたが、この質問が以前に尋ねられたかどうかはわかりません。私は解決策の始まりにいると思いますが、ここに私の問題があります。入力要素が組み込まれた Web ページに HTML テーブルがあり、VBA を介してアクセスする必要があります。関連する HTML のスニペットは次のとおりです。

<td class="tbl1"><input size="11" type="text" maxlength="9" name="txtCusipNo" value=''><a href="javascript:;" onclick="window.open('/SecFinderII1/SIM_SeekSearch.jsp?clientobjectreference=frmSearchEntry.txtCusipNo&formname=frmSearchEntry&textboxname=txtCusipNo','SecurityFinder','resizable=yes,scrollbars=yes,status=no');"><img src="/Settlement/static/images/pbs/lookup.gif" border="0" alt="Open Security Finder" align="absmiddle"></a>&nbsp;<img name="imgCusipNo" src="/Settlement/static/images/pbs/req.gif" border="0" align="top"></td>

次のコードを使用すると、このセルを簡単に見つけることができます。

Set Cells = HTMLDoc.getElementsByTagName("td")
For Each Cell In Cells
    If Cell.className = "tbl1" And Cell.something = something Then
        'This is the cell
    End If
Next Cell

ページには 5 つのセルしかないので、大したことはありません。まだやらなければならないことは、input 要素の使い方を理解することです。私は子供か何かを得ると思いますか?それについての手がかりを見つけることができないようです...

4

1 に答える 1