Can you create a dropdown calculator in Access?

  • Thread starter Thread starter Guest
  • Start date Start date
Trying to add a drop-down calculator to a form in Access. Any ideas?

You can insert the calculator as a Package...
Insert + Object + Package.
Set the path to the calculator.
Click OK
Then edit the package and set the Locked property to No and the
Enabled property to Yes.
Save the changes.
Double-click on the control to open the calculator.

Or..

You can open the built-in Windows calculator, using an event, i.e. the
double click event, of any control:

Application.FollowHyperlink "C:\WINDOWS\system32\calc.exe"

Note: the path to the calculator may be different on your computer.
 
Back
Top