Hi Giri,
The Excel.Application is an interface while Excel.ApplicationClass is
implement Class. You may have a look at the Excel Object Browse.
You may do that by press Ctrl+Alt+J in the IDE.
You may take a look at the example in the link below.
302815 HOW TO: Handle Events for Excel by Using Visual C# .NET
http://support.microsoft.com/?id=302815
Excel.Application exApp =
(Excel.Application)Marshal.GetActiveObject("Excel.Application");
Excel.Worksheet ws =
(Excel.Worksheet)exApp.ActiveWorkbook.Worksheets.get_Item(1);
ws.Cells[1,1]="100";
Can you post some code about where you use the Excel.ApplicationClass?
Regards,
Peter Huang
Microsoft Online Partner Support
Get Secure!
www.microsoft.com/security
This posting is provided "as is" with no warranties and confers no rights.
--------------------