Dim oNameObject As FieldObject
Dim oTempOLE As OLEObject
Dim oReportObjects As ReportObjects
Dim strName As String
Dim i As Integer
strName = ""
Dim oSections As Sections
Dim strRuta As String
Set oSections = crReport.Sections
For i = 1 To oSections.Item("DetailSection1").ReportObjects.Count
If oSections.Item("DetailSection1").ReportObjects.Item(i).Kind = 6 Then
If oSections.Item("DetailSection1").ReportObjects.Item(i).Name Like "Picture*" Then
Set oTempOLE = oSections.Item("DetailSection1").ReportObjects.Item(i)
strName = "Name" + Right(oTempOLE.Name, Len(oTempOLE.Name) - 7)
Set oNameObject = oSections.Item("DetailSection1").ReportObjects.Item(strName)
strRuta = pRutaImg + oNameObject.Value
Set oTempOLE.FormattedPicture = LoadPicture(strruta)
End If
End If
Next