View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Gord Dibben Gord Dibben is offline
external usenet poster
 
Posts: 22,906
Default Command button to open another application

Sub Internet_Explorer()
Dim taskID As Variant
On Error Resume Next
taskID = Shell("start iexplore.exe")
If Err < 0 Then _
MsgBox "IEXPLORE.EXE is not installed on your machine."
End Sub

Alternative.........

Right-click a cell and "Hyperlink".

Browse to the other application's *.exe file and OK.

Gord Dibben Excel MVP


On Tue, 11 May 2004 01:46:04 -0700, ittisak.b
wrote:

Does anyone know how to make hyperlink or command button in Excel 2003 to open another application?