Hi Guys
I have code below that open the file dialog to select files, when I select multipal files it only enters 1 file in my list box and not the rest.
Can anyone help me please.
I have code below that open the file dialog to select files, when I select multipal files it only enters 1 file in my list box and not the rest.
Can anyone help me please.

Dim Fd As FileDialog
Set Fd = Application.FileDialog(msoFileDialogOpen)
With Fd
.AllowMultiSelect = True
.title = "Please select file"
If .Show = True Then
SelectFile = .SelectedItems(1)
Me.txtEmailList = SelectFile
Me.EmailList.AddItem (SelectFile)
Else
Exit Function
End If
Set Fd = Nothing
End With