where is filesystemobject?

E

everymn

I'm hoping someone can teach me to fish here. Is there any tried and
true way to find out what package things are in? I tried searching in
the object browser and FileSystemObject isn't found.

Thanks
 
R

RoyVidar

I'm hoping someone can teach me to fish here. Is there any tried and
true way to find out what package things are in? I tried searching
in the object browser and FileSystemObject isn't found.

Thanks

Try setting a reference to Microsoft Scripting Runtime, first (in
VBE - Tools | References).
 
V

Van T. Dinh

Note that the FileSystem Class in VBA (a compulsory Library already included
in the References collection of your database) also contains a reasonable
number of oft-used functions / methods that are included in the the
FilesystemObject of the Scripting Library.

Check the Object Browser the FileSystem Class of VBA Library for avilable
functions / methods ...
 
Top