Hi to All,
Hi I am creating the application which creates the excel file pro grammatically.
Now I want to open it just after saving it pro grammatically in my code.
How I can open the file. Please reply...
Regards, Girish
Hi to All,
Hi I am creating the application which creates the excel file pro grammatically.
Now I want to open it just after saving it pro grammatically in my code.
How I can open the file. Please reply...
Regards, Girish
You can use
Process.Start( pathToSavedExcelFile );
This will open Excel if its installed.
Very confusing question. You can open a workbook by using the Workbooks.Open method of Excel, if you are using Microsoft.Office.Interop.Excel.