VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Start Windows Calculator In One Line Using C#.Net

by Gehan Fernando (47 Submissions)
Category: Windows System Services
Compatability: VB.NET
Difficulty: Unknown Difficulty
Originally Published: Tue 20th February 2007
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Start Windows Calculator In One Line Using C#.Net

Rate Start Windows Calculator In One Line Using C#.Net



{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            System.Diagnostics.Process.Start("Calc.exe");
        }
    }
}

Download this snippet    Add to My Saved Code

Start Windows Calculator In One Line Using C#.Net Comments

No comments have been posted about Start Windows Calculator In One Line Using C#.Net. Why not be the first to post a comment about Start Windows Calculator In One Line Using C#.Net.

Post your comment

Subject:
Message:
0/1000 characters