Guest User

Untitled

a guest
Jul 14th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.21 KB | None | 0 0
  1.   Dim f As FileDialog
  2.     Set f = Application.FileDialog(msoFileDialogFilePicker)
  3.     f.Show
  4.     For i = 1 To f.SelectedItems.Count
  5.                 MsgBox "Hello World!" & f.SelectedItems(i)
  6.             Next i
Add Comment
Please, Sign In to add comment