L
Ludo
Hi,
I would like to open a file on a network drive.
the ChDir "\\KNDCLT13475.barco.com\LOG" don't work.
i would like to point to a certain folder on a network drive where i
select the needed file.
i use now:
With Application.FileDialog(msoFileDialogOpen)
.AllowMultiSelect = False
.InitialView = msoFileDialogViewDetails
.Show
If .SelectedItems.Count = 0 Then Exit Sub
VarFile = .SelectedItems(1)
End With
But still not pointing to the right drive / directory
any help welcome
Ludo
I would like to open a file on a network drive.
the ChDir "\\KNDCLT13475.barco.com\LOG" don't work.
i would like to point to a certain folder on a network drive where i
select the needed file.
i use now:
With Application.FileDialog(msoFileDialogOpen)
.AllowMultiSelect = False
.InitialView = msoFileDialogViewDetails
.Show
If .SelectedItems.Count = 0 Then Exit Sub
VarFile = .SelectedItems(1)
End With
But still not pointing to the right drive / directory
any help welcome
Ludo