open excel file
C#
4
Posts
4
Posters
0
Views
1
Watching
-
do u want to create a new notebook? or do u want to open an existing file?
-
If you want to open the file with MS Excel just use:
System.Diagnostics.Process.Start("MyFile.xls");
-
if u want to make read some values from the file, you can also use the StreamReader concept to open and read the file. if u simply want to open the file to display values already existing then use the following System.Diagnostics.Process.Start("fullpathFilename");
Keshav Kamat :) India