Se me repite la imagen en ambas ventanas
Duda sobre me repite la imagen y debería ser otra cuando guardo
Dante mira se me repite la imagen pero en la hoja base de datos y cuando guarde los datos e imágenes adjunte otra imagen, en la segunda imagen. Por ende debería mostrarme la otra imagen no la misma. Adjunto foto de como me exportó, y adjunto foto del código
'Cargar imagen UNO
On Error Resume Next
h2.DrawingObjects("B35").Delete
On Error GoTo 0
arch = h1.Cells(b.Row, "Q").Value
If arch <> "" Then
If Dir(arch) <> "" Then
Set fotografia = h2.Pictures.Insert(arch)
'
With fotografia
.Name = "B35"
.ShapeRange.LockAspectRatio = msoFalse
.Top = h2.Range("B35").Top
.Left = h2.Range("B35").Left
.Width = h2.Range("B35:Q44").Width
.Height = h2.Range("B35:Q44").Height
End With
'FOTO
'eliminamos el objeto
Set fotografia = Nothing
End If
End If
'Cargar imagen DOS
On Error Resume Next
h2.DrawingObjects("B46").Delete
On Error GoTo 0
arch = h1.Cells(b.Row, "Q").Value
If arch <> "" Then
If Dir(arch) <> "" Then
Set fotografia = h2.Pictures.Insert(arch)
'
With fotografia
.Name = "B46"
.ShapeRange.LockAspectRatio = msoFalse
.Top = h2.Range("B46").Top
.Left = h2.Range("B46").Left
.Width = h2.Range("B46:Q55").Width
.Height = h2.Range("B46:Q55").Height
End With
'FOTO
'eliminamos el objeto
Set fotografia = Nothing
End If
End If
Desearía que la segunda imagen hiciera lo mismo que en la primera, me agregue cuando tenga una imagen adjuntada en la hoja base de datos, y en el caso de que no adjunte foto cuando guarde los datos, de igual manera que no me muestre ninguna foto.