Click here to Skip to main content
15,917,709 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Can I operate windows 7 inbuilt calculator from my vb.net application???
I want to pass an equation to the calculator as input & take the output answer back to my application.
help me out ASAP...
Posted

You can use Windows built in Calculator using the following Code
System.Diagnostics.Process.Start("Calc")
 
Share this answer
 
Comments
sachinjadhav1994 24-Feb-13 6:51am    
I know that
I have opend the calculator
but I want to pass the equation to the calculator as input & take the answer back to my application
The case of passing an equation to the Windows built in calculator as input & taking the output answer back to your application is totally unreachable, becuase Windows built in Calcular is not as one Form in your project, that you can
code and modify.

Even if you got some techniques to pass input from your application to the Windows built in Calculator, you will not get a trick to get the results back to your application, becuase this calculator is an exe file located in your Computer.

so, you have to find some open source Scientific Calculaters out there, and add your custom codes to do your operations.


Regards
Abkasoft Corporation
 
Share this answer
 
You have to create your own.

Check the below articles. They might help.

1. VB.Net Calculator[^].
2. A Calculator Project in VB NET[^].
3. Else try more from Google[^].

And if you want to do it is javaScript then check my answer How to create Calculator popup using javascript or jquery?[^].

Thanks...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900