Error!
Success!

Process.Start("EXCEL.EXE", filepath)

0
kicks

Process.Start("EXCEL.EXE", filepath)  (Unpublished)

Public Sub RunExcel(ByVal filepath As String) Dim p As New Process p.StartInfo.FileName = "Excel.exe" If Not filepath.StartsWith(Chr(34)) Then filepath = Chr(34) & filepath & Chr(34) End If p.StartInfo.Arguments = filepath p.Start() End Sub


Kicked By:
Drop Kicked By: