If I wanted to use a code like...

Code:
Dim tag As HtmlElement
         For Each tag In WebBrowser1.Document.All
             tag.InvokeMember("click")
         Next
...but I wanted to exclude one element (button) with a name of "bt1", how would I do this?
Thank you all.