ActiveX Calculator

H

hustla7

Has anyone got or know anything about inserting an activeX or any othe
add-on calculator application to microsoft excel spreadsheets? I've go
an activeX calculator add-on for microsoft access and it would b
helpful if someone knew anything about converting it or something alik
into excel format.

Thanx
Nitis
 
S

scottfoxall

I am not sure if this is what you mean? But here is some code to call in the
Windows Calculator.

Dim ReturnValue, I
ReturnValue = Shell("CALC.EXE", 1) ' Execute the application Calculator.
AppActivate ReturnValue ' Activate application Calculator.
 
Top