You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
895 B

using System.Diagnostics;
namespace ProgramOpener
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void IntelliJ_Click(object sender, EventArgs e)
{
Process.Start(@"C:\Program Files\JetBrains\IntelliJ IDEA 2022.3.1\bin\idea64.exe");
}
private void VSCode_Click(object sender, EventArgs e)
{
Process.Start(@"C:\Users\fosan\AppData\Local\Programs\Microsoft VS Code\Code.exe");
}
private void VS_Click(object sender, EventArgs e)
{
Process.Start(@"C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\IDE\devenv.exe");
}
private void AndroidStudio_Click(object sender, EventArgs e)
{
Process.Start(@"D:\AndroidStudio\bin\studio64.exe");
}
}
}

Powered by INFORMATICA.FP.EDU.ES.