Hi,
Let me explain you some things first:
To be able to communicate to a COM component from .net, you have to create a COM wrapper for .Net.
So basically, there are two ways to create a COM wrapper.
1) Easy thing, for example, in your case to work with EXCEL when add a reference to Excel object in .net, you will automatically get a Microsoft.office.Interop.Excel.dll generated for you.
2) You can use the TlbImporter utility to get the Interop class: http://msdn.microsoft.com/en-us/library/tt0cf3sx(VS.80).aspx
So, you can get the Interop dll from your project which uses that dll. Check for the Project's bin/debug or obj/debug directory and you can get the dll.
Regards,
Sam.