Start Windows Calculator In One Line Using C#.Net
Start Windows Calculator In One Line Using C#.Net
Rate Start Windows Calculator In One Line Using C#.Net
(1(1 Vote))
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("Calc.exe");
}
}
}
Start Windows Calculator In One Line Using C#.Net Comments
No comments yet — be the first to post one!
Post a Comment