Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open Windows' Calculator in my C# Win Application?

I know I can open Windows Calculator with the following code :

System.Diagnostics.Process.Start("calc");

But I wanna open it in my C# Win Application, i.e : I don't want to open it in the independent window, I wanna open it in my window.
How can I do it ?

like image 557
Mohammad Dayyan Avatar asked Nov 06 '10 15:11

Mohammad Dayyan


People also ask

How do I open Windows Calculator?

To get started, select the Start button, and then select Calculator in the list of apps. Select the Open Navigation button to switch modes.

How do I open the Calculator from the command prompt?

Type "calc" and hit ↵ Enter .

What is the Shortcut key to open Calculator?

Windows key + 1 opens item #1 on your taskbar, which is now the calculator.


1 Answers

System.Diagnostics.Process.Start("calc.exe");
like image 134
Ali Hamza Avatar answered Sep 29 '22 16:09

Ali Hamza