VBA excel 只读一个文本文件
VBA excel make read only a text file
是否可以使用 workbooks.opentext 方法以 readOnly 打开文本文件?
当我在其他用户打开文件时尝试 运行 宏时,我收到消息 "file in use".
Opentext 表达式中没有可用的 readOnly 选项;
OpenText( 文件名 , 原点 , StartRow , DataType , TextQualifier , ConsecutiveDelimiter , Tab , 分号 , 逗号 , Space , 其他 , OtherChar , FieldInfo , TextVisualLayout , DecimalSeparator , ThousandsSeparator , TrailingMinusNumbers ,本地 )
同时,Worbooks.Open 方法有一个 ReadOnly 选项可用。
谢谢
而不是 Workbooks.OpenText
使用 Workbooks.Open
是否可以使用 workbooks.opentext 方法以 readOnly 打开文本文件? 当我在其他用户打开文件时尝试 运行 宏时,我收到消息 "file in use".
Opentext 表达式中没有可用的 readOnly 选项;
OpenText( 文件名 , 原点 , StartRow , DataType , TextQualifier , ConsecutiveDelimiter , Tab , 分号 , 逗号 , Space , 其他 , OtherChar , FieldInfo , TextVisualLayout , DecimalSeparator , ThousandsSeparator , TrailingMinusNumbers ,本地 )
同时,Worbooks.Open 方法有一个 ReadOnly 选项可用。
谢谢
而不是 Workbooks.OpenText
使用 Workbooks.Open