Bonjour,
Je voudrais lancer l'explorateur Windows avec l'option "documents" pour accélérer la recherche, en alliant VBA et Shell.
Je ne trouve pas la commande correspondante.
Merci pour votre aide.
Sub OpenFindFile() '(Optional pFolder As String, Optional pFile As String, Optional pFindIn As String)
Set shellapp2 = CreateObject("Shell.Application")
pFolder = shellapp2.BrowseForFolder(0, "Sélectionner le dossier dans lequel les fichiers individuels sont enregistrés", 0).self.Path
Call ShellExecute(GetActiveWindow, "find", pFolder, vbNullString, vbNullString, SW_SHOW)
If pFile <> "" Then
SendKeys pFile, True
End If
If pFindIn <> "" Then
SendKeys "{TAB}" & pFindIn, True
End If
End Sub
Je voudrais lancer l'explorateur Windows avec l'option "documents" pour accélérer la recherche, en alliant VBA et Shell.
Je ne trouve pas la commande correspondante.
Merci pour votre aide.
Sub OpenFindFile() '(Optional pFolder As String, Optional pFile As String, Optional pFindIn As String)
Set shellapp2 = CreateObject("Shell.Application")
pFolder = shellapp2.BrowseForFolder(0, "Sélectionner le dossier dans lequel les fichiers individuels sont enregistrés", 0).self.Path
Call ShellExecute(GetActiveWindow, "find", pFolder, vbNullString, vbNullString, SW_SHOW)
If pFile <> "" Then
SendKeys pFile, True
End If
If pFindIn <> "" Then
SendKeys "{TAB}" & pFindIn, True
End If
End Sub