Process.Start("EXCEL.EXE", filepath)(igurr.com)
submitted by
amrelgarhy(825) 3 years, 3 months ago
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
|category: Other
|Views: 16
tags:
another
Everyones tags:
No tags
Your Tags: