【发布时间】:2021-02-13 00:12:22
【问题描述】:
问题
Excel VBA 为 Excel 工作簿提供了 CheckOut 和 CheckIn 的方法,如下所示:
if workbooks.CanCheckOut(sFile) then
workbook.CheckOut(sFile)
set wb = workbooks.open(sFile)
'make changes
wb.CheckIn true, "Some comment", true
end if
但是,如果我尝试签出文本文件(或任何其他文件),我该怎么做?
【问题讨论】:
标签: vba sharepoint