I have this code to open multiple URLs from richtextbox, it works fine, but the problem is that it opens all sites in different browsers.
private void button1_Click(object sender, EventArgs e) { for(int i = 0 ; i < richTextBox1.Lines.Length ; i++ ) { Process.Start("http://" + richTextBox1.Lines[i]); } }
Any ideas on how I can open pages, such as tabs in one browser?
source share