表达 一个代表 Workbook 对象的变量。 示例 在本示例中,Microsoft Excel 确定更新链接的设置,并通知用户。 VB 复制 Sub UseUpdateLinks() Dim wkbOne As Workbook Set wkbOne = Application.Workbooks(1) Select Case wkbOne.UpdateLinks Case xlUpdateLinksAlways MsgBox "Links will always be updated " & _ ...
下面的代码示例创建到 Excel 工作簿的外部链接,然后使用 UpdateLink 方法更新该链接。 此示例假定工作簿 Book2.xls 存在于 C 盘根目录中。 C# privatevoidWorkbookUpdateLink(){ Array links = (Array)this.LinkSources(Excel.XlLink.xlExcelLinks);if(links !=null) {for(inti =1; i <= links.Length; i...
_Workbook.UpdateLink(Object, Object) Method Reference Feedback Definition Namespace: Microsoft.Office.Interop.Excel Assembly: Microsoft.Office.Interop.Excel.dll Updates a Microsoft Excel, DDE, or OLE link (or links). C# 複製 public void UpdateLink (object Name, object Type); Parameters ...
UpdateLinksAlways MsgBox"Links will always be updated "& _"for the specified workbook."CasexlUpdateLinksNever MsgBox"Links will never be updated "& _"for the specified workbook."CasexlUpdateLinksUserSetting MsgBox"Links will update according "& _"to user settting for the specified workbook."End...
Workbook WorkbookClass WorkbookClass Constructors Properties _CodeName _ReadOnlyRecommended AcceptLabelsInFormulas AccuracyVersion ActiveChart ActiveSheet ActiveSlicer Application Author AutoUpdateFrequency AutoUpdateSaveChanges BuiltinDocumentProperties CalculationVersion CaseSensitive ChangeHistoryDuration ChartDataPointTrack...
Microsoft.Office.Tools.Excel.dll, Microsoft.Office.Tools.Excel.v4.0.Utilities.dllGets or sets a value that indicates a workbook's setting for updating embedded OLE links. C# 复制 public Microsoft.Office.Interop.Excel.XlUpdateLinks UpdateLinks { get; set; } Property Value XlUpdateLinks One of ...
1、启动excel,打开要设置的文件;2、按ALT+F11打开VBA编辑窗口,将以下代码粘贴到ThisWorkbook:Private Sub Workbook_Open()Application.AskToUpdateLinks = False '关闭程序询问更新链接提示ThisWorkbook.UpdateLinks = xlUpdateLinksAlways '更新链接End Sub 3、点击保存按钮;4、关闭后重新打开文件即可。
Sub openAllExcelLinks() Dim wb As Workbook Set wb = ActiveWorkbook Dim fs As Object Set fs = CreateObject("Scripting.FileSystemObject") Dim arrLinks As Variant Dim i As Integer arrLinks = ActiveWorkbook.LinkSources(xlExcelLinks) If Not IsEmpty(arrLinks) Then ...
如果您要打开的工作簿含有指向以 HTML 文件格式保存的已关闭工作簿的链接,就可能会出现此问题。要避免此问题,请在尝试打开包含这些链接的工作簿之前,打开该工作簿所链接到的 HTML 文件。如果以 HTML 文件格式保存的工作簿已关闭,则 Excel 不能更新该工作簿中的链接。 Excel 仅在链接源文件已打开的...
(继承自 _Workbook) AutoUpdateSaveChanges 如果共享工作簿自动更新时,对其所做的更改将传送到其他用户,则该值为 True。 如果不传送所做的更改(该工作簿还须与其他用户所做的更改保持同步),则该值为 False。 默认值为 True。读/写 Boolean。 (继承自 _Workbook) BuiltinDocumentProperties 返回一个 DocumentP...