Tagged Questions
5
votes
3answers
222 views
Pass existing FileSystemObject or create multiple instances
I have several procedures that use the FileSystemObject. I find it's quite convenient.
Question: Is it sensible to pass an existing instance of FileSystemObject from a "main" procedure to these ...
1
vote
2answers
63 views
comparing modified versions of filenames obtained using VBA's FileSystemObject
Using VBA with a reference to Microsoft Scripting Runtime. I'm trying to compare filenames in two different directories, to find whether or not the same file is in both directories. However, I'm not ...
1
vote
3answers
1k views
How do I use FileSystemObject in VBA?
Is there something that I need to reference? How do I use this:
Dim fso As New FileSystemObject
Dim fld As Folder
Dim ts As TextStream
I am getting an error because it does not recognize these ...
0
votes
1answer
1k views
Is there an alternative to Scripting.FileSystemObject in Excel 2011 VBA for the mac?
The answers to How can I install/use “Scripting.FileSystemObject” in Excel 2011 for MAC? seem to indicate that using Scripting.FileSystemObject in Excel 2010 for the mac is not possible.
What other ...
0
votes
1answer
243 views
Would it be better to use a regex or a simple FileExists to find files?
I need to check if a file exists within a directory. The two options I thought of are using a regex (vbscript.regexp) to determine if the file is present. The other option being to use the ...
0
votes
4answers
1k views
What is “Dim fso, MyFile, FileName, TextLine” in VBA?
I received this code from one of those nice people here who are willing to spend their time and energy to share their knowledge with noobs:
Sub ReadLinesFromAFileOneAfterAnother ()
Const ForReading = ...