Dos imágenes en un formulario access 2007
Tengo hecha una base de datos access 2007 para una peña de futbol. Tengo las fotos de cada socio en una carpeta separada en el mismo directorio de la base de datos y cada nombre es el DNI.jpg de cada socio, por lo que hacia la llamada desde el formulario y no había problema. He tenido que añadir una imagen del equipo preferido de cada socio y he usado el mismo código pero no me funciona, solo me sale la primera imagen. El código usado es el siguiente en el evento “al activar registro” del formulario:
Private Sub Form_Current()
On Error GoTo Error_img1_Current
Dim rutaimg1 As String
rutaimg1 = CurrentProject.Path & "\BaseGest_images\Fotos\" & Me.[DNI] & ".jpg"
[img1].Picture = rutaimg1
Me.Refresh
If IsNull([DNI]) Then
[img1].Picture = CurrentProject.Path & "\BaseGest_images\Fotos\SinFoto.jpg"
End If
Exit Sub
Error_img1_Current:
If Err = 2220 Or Err = 2114 Then
[img1].Picture = CurrentProject.Path & "\BaseGest_images\Fotos\SinFoto.jpg"
Exit Sub
End If
On Error GoTo Error_img2_Current
Dim rutaimg2 As String
rutaimg2 = CurrentProject.Path & "\BaseGest_images\Equipos\" & Me.[Equipo] & ".jpg"
[img2].Picture = rutaimg2
Me.Refresh
If IsNull([EQUIPO]) Then
[img2].Picture = CurrentProject.Path & "\BaseGest_images\Equipos\SinFoto.jpg"
End If
Exit Sub
Error_img2_Current:
If Err = 2220 Or Err = 2114 Then
[img2].Picture = CurrentProject.Path & "\BaseGest_images\Equipos\SinFoto.jpg"
Exit Sub
End If
End Sub