Thread: Open a Program
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 Open a Program

Sub Convert_units()
Dim taskID As Variant
On Error Resume Next
Shell ("C:\Utilities\Convert\Converter.exe"), vbNormalFocus
If Err < 0 Then _
MsgBox "Converter.exe is Missing"
End Sub

Adapt to suit the *.exe you want to run


Gord Dibben MS Excel MVP

On Fri, 25 May 2007 19:21:00 -0700, Mike wrote:

Is it possiable to open a .exe program with excel macro?

Thanks Mike