Macro needed for word...TIA

K

Ken Snell

This newsgroup is for ACCESS macros, not for Word macros..... but here is
generic code for doing what you seek:

Dim strFileName As String
strFileName = Dir("C:\MyFolder\*.*")
Do While strFileName <> ""
Debug.Print strFileName
strFileName = Dir()
Loop
 

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