如标题所述,无论我尝试什么,我从 Word 宏打开的 Excel 文件都会在 ReadyOnly 模式下持续打开。
这是导致该行为的代码:
Dim wbProcess As Workbook
Dim strDatei As String
strDatei = ActiveDocument.Path & "\Parameters.xlsx"
Set wbProcess = Workbooks.Open(strDatei, IgnoreReadOnlyRecommended:=True, ReadOnly:=False)
Excel.Application.Visible = True
或者它可能是其他一些设置,而不是 VBA 特定的?