If .Execute() > 0 Then
Call Load_the_Pictures(PicturePath$)
Else
Msg = "There are no pictures in this directory:" _
+ CR + CR + PicturePath$ + CR + CR + _
"Please check the path again."
Style = vbOKOnly + vbQuestion
Title = "No files found"
MsgBox Msg, Style, Title
End If
End With
End Sub