vc中如何获取webBrowser控件显示的网页中的控件(form中的如:radio,CheckBox等)的值
在vc对话框中有一个webBrowser控件,在这个控件中显示一个网页文件。网页文件中有一些进行交互的控件(如:radio,text等)。现在如何通过webBrowser来获取网页中的控件的值。
谢谢.........
在线等....
[解决办法]
给你看个VB版的:http://azhisoft.com/sdemo.rar
[解决办法]
1.IWebBrowser2::get_Document
HRESULT get_Document(
IDispatch * FAR* ppDisp
);
2.IHTMLDocument2::get_all
HRESULT get_all(
IHTMLElementCollection **p
);
3.IHTMLElementCollection::item
HRESULT item(
VARIANT name,
VARIANT index,
IDispatch **pdisp
);
4.IHTMLElement::getAttribute
HRESULT getAttribute(
BSTR strAttributeName,
LONG fFlags,
VARIANT *AttributeValue
);
[解决办法]
你从内存中读出来不就行了吗