0

我正在尝试从 C++ 程序中填充 Internet Explorer 中的一些表单输入字段,但我正面临一个随机错误,我希望这是因为我的代码:

UINT msg = RegisterWindowMessage("WM_HTML_GETOBJECT");
LRESULT result = 0;
SendMessageTimeout(hwnd, msg, NULL, NULL, SMTO_ABORTIFHUNG, 10000, (PDWORD_PTR)&result);
if (!result)
    return;


// get main document object
IHTMLDocument3 *doc = NULL;
ObjectFromLresult(result, IID_IHTMLDocument3, NULL, (void**)&doc);
if (!doc)
    return;

VARIANT varint, varstr;
varint.vt = VT_I4;
varstr.vt = VT_BSTR;


IHTMLElementCollection* pElemCollections=NULL;


if (FAILED(doc->getElementsByTagName(L"input", &pElemCollections)))
    return;

long nelm;
pElemCollections->get_length(&nelm);

...

在最后一行并且在同一页面上使用相同的 HWND 时,有时我会得到很好的数字或输入字段,并且经常为 nelm 得到 0。

你在我的代码中看到什么错误还是一个错误?请注意,我验证了 HWND 是正确的,并且return从未调用过。

谢谢

4

1 回答 1

0

这样做我没有更多问题:

UINT msg = RegisterWindowMessage("WM_HTML_GETOBJECT");
LRESULT result = 0;
SendMessageTimeout(hwnd, msg, NULL, NULL, SMTO_ABORTIFHUNG, 10000, (PDWORD_PTR)&result);
if (!result)
    return;


// get main document object
IHTMLDocument3 *doc = NULL;
ObjectFromLresult(result, IID_IHTMLDocument3, NULL, (void**)&doc);
if (!doc)
    return;

CComVariant varint;
CComVariant varstr;


IHTMLElementCollection* pElemCollections=NULL;

CComBSTR name(L"input")
if (FAILED(doc->getElementsByTagName(name, &pElemCollections)))
    return;

long nelm;
pElemCollections->get_length(&nelm);

...
于 2017-08-11T06:11:19.380 回答