using System;
using System.Diagnostics;
using System.Windows.Forms;
namespace workingframe
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void open_browser_Click(object sender, EventArgs e)
{
Process.Start("http://collectivesolver.com");
}
}
}