Hello,

I am running this script:

    With Application.FileDialog(msoFileDialogFolderPicker)
        .Title = "Select Folder"
        .AllowMultiSelect = False
        .InitialFileName = ActiveWorkbook.Path & "\"
        .ButtonName = "Load files from folder"
        .Show
        If .SelectedItems.Count = 0 Then Exit Sub
        xDir = .SelectedItems(1)
    End With
This places a custom Title on the Folder Picker window, but it displays Excels Icon on the left.
I am wondering if there is a way to place a custom icon in lieu of the Excel's, or anywhere else on this window?

Could you please advise?
Thanks