Merhaba arkadaşlar,
raporda resimleri alamıyorum,
en üstteki resim diğer kayıtlarada çıkıyor,
oysaki her resmin adresi ayrı,
ne yapabilirim?
İyi çalışmalar...

Private Sub Ayrıntı_Format(Cancel As Integer, FormatCount As Integer)
Call RsmAl
End Sub
Me.cerceve.Picture = ""
Private Sub RsmAl()
On Error GoTo akd
If Not IsNull([Resim]) Then
Me.cerceve.Picture = [Resim]
Else
Me.cerceve.Picture = "D:\Resim\ResimYok.Jpg"
End If
Exit Sub
akd:
If Err = 2220 Then
Me.cerceve.Picture = "D:\Resim\ResimHatali.Jpg"
Else
MsgBox Err.Description, vbExclamation
End If
End Sub