I'm doing a small project in c# win form, and when i open two links with:
process.start("http://www.example.com");
process.start("http://www.example2.com");
that's all working properly, but what i want is the two links open in new browser windows when they have to open(e.g. button click, on form load etc.).
how can i do that? I searched the web and mostly found ASP.net and such..
Thanks in advance, Vincent