- Код: Выделить всё
Dim fd As FileDialog
Set fd = Application.FileDialog(msoFileDialogFilePicker)
With fd
If .Show = -1 Then
For Each vrtSelectedItem In .SelectedItems
MsgBox "The path is: " & vrtSelectedItem
Next vrtSelectedItem
Else
End If
End With
Вот так я могу печатать путь к файлу, но если я пишу например
Set f = fso.GetFile("& vrtSelectedItem") он не может найти файл, как мне быть?