I use the following code in order to open a excel file
through my code.

Application excel = new Application();

excel.Workbooks.Open(....

The problem is that I can't find which parameters I have
to pass the open function. The excel version in my pc is
excel 2000.

Thanks

Re: Call of excel through C# by Alvin

Alvin
Thu Dec 18 10:52:08 CST 2003

I believe it is overloaded, one of the takes a file path. Have a look at
this for guidance
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnofftalk/html/office01042001.asp

--
Regards,
Alvin Bruney
Got DotNet? Get it here
http://home.networkip.net/dotnet/tidbits/default.htm
"dimitris" <xernos.dimitris@lannet.gr> wrote in message
news:066b01c3c553$c3b7b5a0$a301280a@phx.gbl...
> I use the following code in order to open a excel file
> through my code.
>
> Application excel = new Application();
>
> excel.Workbooks.Open(....
>
> The problem is that I can't find which parameters I have
> to pass the open function. The excel version in my pc is
> excel 2000.
>
> Thanks