118

有什么我需要参考的吗?我如何使用这个:

Dim fso As New FileSystemObject
Dim fld As Folder
Dim ts As TextStream

我收到一个错误,因为它无法识别这些对象。

4

5 回答 5

187

在 Excel 中,您需要设置对 VB 脚本运行时库的引用。相关文件通常位于\Windows\System32\scrrun.dll

  • 要引用此文件,请加载 Visual Basic 编辑器 ( ALT+ F11)
  • 从下拉菜单中选择工具 > 参考
  • 将显示可用参考的列表框
  • Microsoft Scripting Runtime勾选“ ”旁边的复选框
  • 文件的全名和路径scrrun.dll将显示在列表框下方
  • 点击OK按钮。

如果已启用对 VBA 对象模型的访问,这也可以直接在代码中完成。

可以通过勾选Trust access to the VBA project object model文件> 选项 > 信任中心 > 信任中心设置 > 宏设置中的复选框来启用访问

VBA 宏设置

添加参考:

Sub Add_Reference()

    Application.VBE.ActiveVBProject.References.AddFromFile "C:\Windows\System32\scrrun.dll"
'Add a reference

End Sub

要删除参考:

Sub Remove_Reference()

Dim oReference As Object

    Set oReference = Application.VBE.ActiveVBProject.References.Item("Scripting")

    Application.VBE.ActiveVBProject.References.Remove oReference
'Remove a reference

End Sub
于 2010-07-13T10:46:33.627 回答
15

在 excel 2013 中,对象创建字符串是:

Dim fso
Set fso = CreateObject("Scripting.FileSystemObject")

而不是上面答案中的代码:

Dim fs,fname
Set fs=Server.CreateObject("Scripting.FileSystemObject")
于 2016-07-31T19:54:53.367 回答
12

这些家伙有很好的例子来说明如何使用文件系统对象http://www.w3schools.com/asp/asp_ref_filesystem.asp

<%
dim fs,fname
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fname=fs.CreateTextFile("c:\test.txt",true)
fname.WriteLine("Hello World!")
fname.Close
set fname=nothing
set fs=nothing
%> 
于 2010-07-13T00:04:16.373 回答
2

添加参考后,我不得不使用

Dim fso As New Scripting.FileSystemObject
于 2018-02-15T23:25:01.890 回答
2

如上所述导入脚本运行时后,您必须稍作修改才能使其在 Excel 2010(我的版本)中工作。在下面的代码中,我还添加了用于用户选择文件的代码。

Dim intChoice As Integer
Dim strPath As String

' Select one file
Application.FileDialog(msoFileDialogOpen).AllowMultiSelect = False

' Show the selection window
intChoice = Application.FileDialog(msoFileDialogOpen).Show

' Get back the user option
If intChoice <> 0 Then
    strPath = Application.FileDialog(msoFileDialogOpen).SelectedItems(1)
Else
    Exit Sub
End If

Dim FSO As New Scripting.FileSystemObject
Dim fsoStream As Scripting.TextStream
Dim strLine As String

Set fsoStream = FSO.OpenTextFile(strPath)

Do Until fsoStream.AtEndOfStream = True
    strLine = fsoStream.ReadLine
    ' ... do your work ...
Loop

fsoStream.Close
Set FSO = Nothing

希望对您有所帮助!

最好的祝福

法比奥

于 2018-05-04T16:18:49.693 回答