[转]生成 Excel.dll

来自:http://bbs.csdn.net/topics/330137762

默认的情况下microsoft excel 11.0 object library对象是一个.exe文件,所以我们需要利用工具Tlbimp.exe 生成主 Interop 程序集:
1)使用VS命令行工具;
2)把Excel拷贝到 Microsoft Visual Studio 8SDKv2.0Bin
3)输入tlbimp EXCEL.exe   /out:Excel.dll
命令完成后得到:
Microsoft (R) .NET Framework Type Library to Assembly Converter 2.0.50727.42
Copyright (C) Microsoft Corporation.  All rights reserved.
TlbImp : warning TI0000 : Primary interop assembly 'Microsoft.Office.Interop.Exc
el, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' is alrea
dy registered for type library 'D:Program FilesMicrosoft Visual Studio 8SDKv
2.0inEXCEL.exe'.
Type library imported to D:Program FilesMicrosoft Visual Studio 8VCExcel.dll

原文地址:https://www.cnblogs.com/z5337/p/8241340.html