Open an excel document
C#
5
Posts
3
Posters
0
Views
1
Watching
-
How to open an excel document with c#, The excel document must open in its own window when i press a button
Try using the Process class of the System.Diagnostic namespace. Bikash Rai
-
Try using the Process class of the System.Diagnostic namespace. Bikash Rai
-
How to open an excel document with c#, The excel document must open in its own window when i press a button
-
I have used the following code Process.Start("EXCEL.EXE", "c:\\temp\\test.xls"); and ASP.NET starts a process, EXCEL.EXE, but the window does not open. I have tried to set the WindowStyle to maximize but stil nothing... What to do?