我正在尝试将工作表从现有的Excel文件复制到我当前的工作簿。我有一个带有以下代码的Excel加载项:
string wsName = "template." + ((System.Windows.Forms.Button)sender).Tag + "." + ((System.Windows.Forms.Button)sender).Text;
Microsoft.Office.Interop.Excel.Application x = new Microsoft.Office.Interop.Excel.Application();
x.Visible = false; x.ScreenUpdating = false;
x.Workbooks.Open(Properties.Settings.Default.TemplatePath);
try
{
foreach (Worksheet w in x.Worksheets)
if (w.Name == wsName)
w.Copy(Type.Missing, Globals.ThisAddIn.Application.Workbooks[1].Worksheets[1]);
}
catch
{ }
finally
{
x.DisplayAlerts = false; x.Workbooks.Close(); x.DisplayAlerts = true; // close application with disabled alerts
x.Quit(); x.Visible = true; x.ScreenUpdating = true;
x = null;
}
我根据模板路径在后台打开第二个excel实例。我找到了工作表。这一切都很好,但是,我尝试将工作表复制到活动工作簿我无法使其工作。 当前错误是无法找到方法Copy,但是当我删除参数时它执行正常。所以我假设我的问题出现在Globals.ThisAddIn.Appllication.Workbooks [1]中。评估该参数确实会返回AddIn中当前活动的工作。
答案 0 :(得分:1)
事实是您正在尝试使用来自不同进程/线程的对象:
w.Copy(Type.Missing, Globals.ThisAddIn.Application.Workbooks[1].Worksheets[1]);
w
实例与新创建的Excel实例相似,但该参数来自加载项实例。
如果您需要复制工作表,则需要在现有的Excel实例中打开它。