用于在Excel文档中隐藏工具栏的C#代码

时间:2010-11-16 20:32:53

标签: c# excel-2003

我有一个C#Winforms程序,它打开一个包含以下代码的excel文档。 它工作得很好,但我无法弄清楚该怎么做,就是关闭所有菜单和工具栏。

我现在使用的excel版本是2003年...但我将在不久的将来升级到2010年。 有什么想法吗?

//top of source...
using Excel = Microsoft.Office.Interop.Excel;

// Code inside a function...

// Get report and display it on the screen.
Excel.Application xlApp;
Excel.Workbook xlWorkBook;
Excel.Worksheet xlWorkSheet;
object misValue = System.Reflection.Missing.Value;
xlApp = new Excel.ApplicationClass();

xlWorkBook = xlApp.Workbooks.Open(strFileName, 0, true, 5, "", "", true,Excel.XlPlatform.xlWindows, "\t", false, false, 0, true, 1, 0);
xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1);
xlApp.Visible = true;
xlApp.DisplayFullScreen = true;

 // Display the Document and then Sleep.
System.Threading.Thread.Sleep(timeToShowMilliseconds);

// Close the Excel report 
 xlWorkBook.Close(false, misValue, misValue);
xlApp.Quit();

releaseObject(xlWorkSheet);
releaseObject(xlWorkBook);
releaseObject(xlApp);

1 个答案:

答案 0 :(得分:0)

我一直在研究你的情况,我想Excel.Application你可以找到答案。

显然你需要做的是这样的事情:

Excel.Application xlApp;
xlApp.CommandBars("tabName").Controls("File").Enabled = false;

尝试并让我知道,如果它不起作用,我们会想出一些东西。