Hey I\'m writing a wrapper for the excel interop, I want to be able to open a csv file in excel and show it to the user. I\'ve got the basics down, but when i set visible t
It is MUCH easier than that if all you want to do is open the file...
Process proc = new Process(); proc.StartInfo = new ProcessStartInfo("excel.exe", "output.csv"); proc.Start();