the path of a document

  • Thread starter Thread starter Cecilia Reyes
  • Start date Start date
C

Cecilia Reyes

How do i get the path (location) of a certain document
through code in an access module?
 
"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)))
 
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...
 
Back
Top