Or internet explorers, Im making a joke tool (im still learning alot in VB .NET and this was a simple tool to make for me) so far it opens 20 tabs in firefox of one web page, But what i want to do is it to open more firefox or internet explorer as well as opening more tabs, the code i have so far is
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
For i = 1 To 20
System.Diagnostics.Process.Start("website")
Next i
End Sub
i am new to VB .NET and all help is appreciated.