Pop up calculator possible ?

O

ORLANDO VAZQUEZ

Is there any way to have a popup calculator in an excel spreadsheet when you,
for example, click a button ?
 
F

FSt1

hi
you can have the builtin microsoft calculator pop up with this code...
Sub CalcPopup1()
Application.ActivateMicrosoftApp Index:=0
End Sub

you could drop a command button on the sheet and put it in the
commandbutton_click event or attach it to a custom icon.
works in 2003. untested in 2007.

regards
FSt1
 
O

ORLANDO VAZQUEZ

That is great! Thank you.


--
Orlando Vazquez


FSt1 said:
hi
you can have the builtin microsoft calculator pop up with this code...
Sub CalcPopup1()
Application.ActivateMicrosoftApp Index:=0
End Sub

you could drop a command button on the sheet and put it in the
commandbutton_click event or attach it to a custom icon.
works in 2003. untested in 2007.

regards
FSt1
 
Top