Excel 2002 to 2007 Macro containing "Filesearch"

D

dede

I have a macro running on a PC with the Excel version 2002.
This macro use the Filesearch and it's not recognize in a other PC running
with Excel 2007

By open the Object Browser under Classes, I can see this "Filesearch", but
in light !

How could I have it in bold (mean recognize ??)

Thank's for your help
 
D

Dave Peterson

Filesearch was removed in xl2007.

You'll have to find another way--maybe using Dir or FileSystemObject?
 
D

dede

So why could you still see it in the Object Browser & as well in the help
with the example how to use it ??

With Application.FileSearch
.NewSearch
.LookIn = "C:\My Documents"
.SearchSubFolders = True
.FileName = "Run"
.MatchTextExactly = True
.FileType = msoFileTypeAllFiles
End With
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top