Hi,
Currently I am supposted to open an excel 2002 file sent by one of our
clients. We have Excel 97 in the office and I am refering to the MS Excel 8.0
Object library in the COM references.

This is the code I typed.

Excel.ApplicationClass objApp = new Excel.ApplicationClass();
Excel.Workbook wb =
objApp.Application.Workbooks.Open("C:\\..\\myfile.xls",Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing);

but I dont see the worksheet being opened when I run the application.

could some body help me with this issue.

Also do I need to upgrade from excel 97 to excel 2002/2003 or is it fine if
I still stay with the 97 excel.

Thank you.