有没有办法在不启动 Excel 应用程序的情况下使用 Office Interop 运行宏?
如果我将 Excel 应用程序设置为 false,它仍然会显示 Excel
我的代码:
private void button1_Click(object sender, EventArgs e)
{
Excel.Application oExcel = new Excel.Application();
oExcel.Visible = false;
oExcel.Run("'c:\\PERSONAL.XLSB'!Module1");
}