![]() |
|
|
|
#1
|
||||
|
||||
|
Basically: Code:
Sub Demo()
Dim i As Long
With Application.FileDialog(msoFileDialogOpen)
.AllowMultiSelect = True
If .Show = -1 Then
For i = 1 To .SelectedItems.Count
'Do your prcessing here
MsgBox .SelectedItems(i)
Next
End If
End With
End Sub
__________________
Cheers, Paul Edstein [Fmr MS MVP - Word] |
|
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Refering figure number too text | danzi | Word | 1 | 01-20-2012 12:13 PM |
| Refering to photos on other pages | woodfind | Word | 1 | 05-17-2010 01:52 AM |