Private Sub File_Download() Dim _Elements As HtmlElementCollection = WebBrowser.Document.GetElementsByTagName("input") For Each _Element As HtmlElement In _Elements If _Element.GetAttribute("value").Contains("Download") Then _Element.InvokeMember("click") End If Next End Sub
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)