Originariamente inviato da pietro09
se ho capito

codice:
Private IE As InternetExplorer
    Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
        If IE Is Nothing Then IE = New InternetExplorer()
        IE.Navigate("http://forum.html.it/forum/showthread.php?s=&threadid=1472576")
        IE.Visible = True
    End Sub

    Private Sub Button2_Click(sender As System.Object, e As System.EventArgs) Handles Button2.Click
        If IE Is Nothing Then IE = New InternetExplorer()
        IE.Navigate("http://www.repubblica.it/")
        IE.Visible = True
    End Sub
ho però un dubbio...

de dichiaro prima l'oggetto InternetExplorer
metti caso che ho necessità di dichiararne tipo 10 o anche 15

non mi trovo con tante instanze aperte ?