axWebBrowser1.Document;
Hvordan kan jeg få fat i alle textinput tags ved hjælp af ihtmldocument2.listBox1.Items.Clear();
IHTMLDocument2 HTMLDocument = (IHTMLDocument2)axWebBrowser1.Document;
IHTMLElementCollection elem = (IHTMLElementCollection)HTMLDocument.body.all;
foreach (IHTMLElementCollection h in elem)
{
listBox1.Items.Add(h.toString());
}
min h in elem er null, hvorfor ?
mvh
Pigbear