Hello All: I am writing a program to calculate a tax rate based on a few simple income levels, but I am getting bogged down with the End of Statement error. I have tried numerous endings except the obvious am sure. Can anyone offer some suggestions? Here is what I have so far! Private...
1.Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click 2.For Each Link As HtmlElement In WebBrowser1.Document.Links 3.Dim strText As String = Link.InnerText 4.If strText.IndexOf("Heal") > 0 Then 5.Link.InvokeMember("Click") 6.Exit Sub ...


