İlişikteki uygulamada ( bina formunun resimler sayfasında ) Sayın Mehmet Demiral'in 6 resimli albüm çalışmasını kullandım. Ancak resim eklemede " Variable not defined" hatası alıyorum.
Uygulamam ilişiktedir.
Saygılar.

' Displays the Office File Open dialog to choose a file name
' for the current employee record. If the user selects a file
' display it in the image control.
Me.ImagePath = Null
Dim fileName As String
Dim result As Integer
Dim fDialog As Office.FileDialog
Set fDialog = Application.FileDialog(msoFileDialogFilePicker)
' With Application.FileDialog(msoFileDialogFilePicker)
With fDialog
.Title = "Resim Seç"
.Filters.Add "Bütün dosya türleri", "*.*"
.Filters.Add "JPEGs", "*.jpg"
.Filters.Add "Bitmaps", "*.bmp"
.FilterIndex = 1
.AllowMultiSelect = False
.InitialFileName = "C:\"
result = .Show
If (result <> 0) Then
fileName = Trim(.SelectedItems.Item(1))
Me![ImagePath].Visible = True
Me![ImagePath].SetFocus
Me![ImagePath].Value = fileName
Me!adı.SetFocus
Me![ImagePath].Visible = False
Call ImagePath_AfterUpdate
End If
End With