Private Sub cmdGetImage_Click()
' Requires reference to Microsoft Office 11.0 Object Library.
Dim fDialog As Office.FileDialog
Dim varFile As Variant
' Set up the File Dialog.
Set fDialog = Application.FileDialog(msoFileDialogFilePicker)
With fDialog
' Allow user to make multiple selections in dialog box
'.AllowMultiSelect = True
' Set the title of the dialog box.
.Title = "Please select your picture"
' Clear out the current filters, and add our own.
.Filters.Clear
.Filters.Add "Pictures", "*.jpg; *.bmp; *.dib; *.gif*"
' Show the dialog box. If the .Show method returns True, the
' user picked at least one file. If the .Show method returns
' False, the user clicked Cancel.
If .Show = True Then
'Loop through each file selected. Even if MultiSelect is false, use this to get the single file selected
For Each varFile In .SelectedItems
Me.ControlName.Picture = varFile
Me.FieldName = varFile
Next
Else
MsgBox "You clicked Cancel in the file dialog box."
End If
End With
End Sub