AD
Administrator
Syncfusion Team
February 15, 2006 09:24 PM UTC
Hi Shwetha,
The excel file can be opened by starting a local system process. Here is a code snippet.
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo.FileName = @"C:\MyExcel.xls"; //file path
proc.Start();
Regards,
Calvin.
SR
Shwetha R
February 16, 2006 05:08 AM UTC
hi calvin,
Thanks for the response. It works. Is there anyother way of opening the excel file in dotnet other than starting a process?
thanks & regards
shwetha