How would I go about this
How would I go about getting just the game from haxball (I cant post links), and showing it inside of a .vb application.
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
WebBrowser1.Document.GetElementById("navigation").Style = "display:none"
WebBrowser1.Document.GetElementById("donate").Style = "display:none"
WebBrowser1.Document.GetElementById("social_bookmarking_buttons").Style = "display:none"
WebBrowser1.Document.GetElementById("ads").Style = "display:none"
WebBrowser1.Update()
End Sub


Dim _links As HtmlElementCollection = WebBrowser1.Document.GetElementsByTagName("a")
For Each xx As HtmlElement In _links
MessageBox.Show("Inner Text: " & xx.InnerText & Environment.NewLine _
& "Outer Text: " & xx.OuterText & Environment.NewLine _
& "zzzzzzzzzz: " & xx.OuterHtml)
Next