我正在尝试从 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
从未调用过。
谢谢