Jennifer84 0 Posting Pro

Hi,

I have a button control where I retreive 2 strings with 2 URL like in the code below.
What I wonder how it is possible to do, is how to open up 1 browser window with 2 Tabs where 1 Tab is http://www.google.com and the other http://www.yahoo.com
How can this be possible to do ?

private: System::Void button1_Click(System::Object^  sender, System::EventArgs^  e) 
{
	String^ URL1 = "http://www.google.com";
	String^ URL2 = "http://www.yahoo.com";

	//How to open up a browser with two session tabs with each URL in each?
}