Hi,
I don't know if this code would help, but process.start won't work against delimeted text. Unless, if you use this method: Workbooks.OpenText.
Dim ExcelApp As New Excel.Application
ExcelApp.Visible = True
ExcelApp.Workbooks.OpenText(Filename:=lblPath.Text,
ConsecutiveDelimiter:=False, Tab:=False, Semicolon:=False, Comma:=False _
, Space:=True, Other:=False)
ExcelApp = Nothing
GC.Collect()
As Reverend Jim said, it is better to Dispose orphaned excel.exe to avoid memory leak.