vb禁止excel表格计算机,Microsoft.Office.Interop.Excel VB.NET如何在工作表中禁用选择锁定值...

我在受保护的Excel工作表上使用VB.Net中的Microsoft.Office.Interop.Excel库。所有的保护设置工作正常,除了我不能设置选择锁定的单元格它显示何时使用Excel保护工作表界面,但我看不到如何使用该库将其设置为false。我已经尝试了保护方法中的所有不同值,但没有人切换值。

Excel的保护工作表菜单

Microsoft.Office.Interop.Excel VB.NET如何在工作表中禁用选择锁定值

下面是我用的,让我的工作表,填充某些值,然后保护工作表的代码片段。 GetWorkSheet是一个内部方法,它将返回一个WorkSheet对象,而invoiceData是一个数据表,它具有要添加到电子表格中的数据。

Dim newSheet As Worksheet = getWorkSheet(newSheetName)

' Make the current Work Sheet active so that it will be accepting the data.

newSheet.Activate()

newSheet.Unprotect(sheetPassword)

For i As Integer = 1 To invoiceData.Rows(0).ItemArray.Count

newSheet.Cells(transactionalRow, i) = invoiceData.Rows(0).ItemArray(i - 1)

Next

'work is done so protect it again

newSheet.Protect(sheetPassword, False, True, False, True, True, True, True, True, True, True, True, True, True, True, True)

excel.ActiveWorkbook.Save()

2011-08-29

Jeff Fol

你可能感兴趣的:(vb禁止excel表格计算机)