> Hi,
>
[quoted text clipped - 5 lines]
>
> How can I let VBA open a browser window and show me all available CSV files?
With Application.FileDialog(msoFileDialogFilePicker)
.AllowMultiSelect = False
.Filters.Add "csv files", "*.csv"
.Show
If .SelectedItems.Count > 0 Then MsgBox .SelectedItems.Item(1)
End With

Signature
PL
Frans Verhaar - 23 Jun 2006 06:57 GMT
Thanks, that works.
>> Hi,
>>
[quoted text clipped - 13 lines]
> If .SelectedItems.Count > 0 Then MsgBox .SelectedItems.Item(1)
> End With
Frans Verhaar - 24 Jun 2006 11:46 GMT
Thanks a lot Piotr. It works fine!
Regards,
Frans
>> Hi,
>>
[quoted text clipped - 13 lines]
> If .SelectedItems.Count > 0 Then MsgBox .SelectedItems.Item(1)
> End With