Calculator

J

John Smith

Hi everyone,

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

Thanks

John
 
J

Jeff Conrad

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
 
Top