I did do the YOURWEBBROWSER.ScrollBarsEnable = false thing but the scrollbar is still there. My problem is that the scroll bar shows up only when i go play the game.
What do i do with this?
Code:
Private Sub WebBrowser1_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted
End Sub
Do u mean this
Code:
Private Sub WebBrowser1_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted
WebBrowser1.ScrollBarsEnabled = False
End Sub