FileDialog(msoFileDialogOpen)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Should the user's selection of a file in the file dialog open actually open
the selected file or does it just select the file?

With Application.FileDialog(msoFileDialogOpen)
.AllowMultiSelect = False
.Show
End With
 
Mitch,

Add "Execite" to open it:

With Application.FileDialog(msoFileDialogOpen)
.AllowMultiSelect = False
.Show
.Execute
End With
hth,

Doug
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top