Private Sub CiblePhoto_Click()
'Numéroter image
Dim boite As FileDialog
Dim LeFichier As Variant: Dim compteur As Byte
Set boite = Application.FileDialog(msoFileDialogFilePicker)
boite.AllowMultiSelect = True
boite.Show
compteur = 1
For Each LeFichier In boite.SelectedItems
Name LeFichier As Replace("", "", "") & "" & compteur & ".png"
compteur = compteur + 1
Next LeFichier
Set boite = Nothing
Set LeFichier = Nothing
End Sub