0
kicks
Process.Start("EXCEL.EXE", filepath)
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