Calculator

  • Thread starter Thread starter John Smith
  • Start date Start date
J

John Smith

Hi everyone,

I want to program a button that will open the windows calculator... Any
idea how?

Thanks

John
 
Hi,

This works for me in Access 97 on Windows 98.
Not sure about other Access and Windows versions.

Private Sub cmdOpenCalculator_Click()
Shell "calc.exe"
End Sub

Hope that helps,
Jeff Conrad
Bend, Oregon
 
Back
Top