D
Dave K.
I have the following code in the on click event procedure for a toggle button.
Dim dlgOpen As FileDialog
Set dlgOpen = Application.FileDialog(DialogType:=msoFileDialogOpen)
With dlgOpen
.AllowMultiSelect = True
.Show
End With
End Sub
I want to actually open a file when I clck the open button in the dialog box
not return the file file path.
Dim dlgOpen As FileDialog
Set dlgOpen = Application.FileDialog(DialogType:=msoFileDialogOpen)
With dlgOpen
.AllowMultiSelect = True
.Show
End With
End Sub
I want to actually open a file when I clck the open button in the dialog box
not return the file file path.