the path of a document

C

Cecilia Reyes

How do i get the path (location) of a certain document
through code in an access module?
 
J

JSand42737

"Cecilia Reyes" said:
How do i get the path (location) of a certain document
through code in an access module?

Cecilia

You can use this:

Dim strFile As String
strFile = "D:\logfiles\ex011201.log"
Debug.Print Left(strFile, Len(strFile) - Len(Dir(strFile)))
 
C

Cecilia Reyes

I'm sorry man but not only it didnt work, i also dont
understand what you´re doing...
Can you explain to the humans?
;)
thanks...
 

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