Recent content by MrSockpuppet

  1. M

    Searching for files on a drive

    Look at: Application.FileSearch There are plenty of copy and paste example on google.
  2. M

    VBA DIR() Locks Directory

    Hello, If I run this code: Public Function Check_Directory(DirName As String) As Boolean Check_Directory = False If Dir(DirName) <> "" Then Check_Directory = True End If End Function Then it locks the directory (one listed as DirName) so that I cannot rename it...
Back
Top Bottom