Dim LngPicLen As Long
LngPicLen = AbreTabla.Fields("PD").FieldSize
'
' If there's data in the picture field,
' save it to temp file and load it.
If LngPicLen > 0 Then
'
' Extract from database
StrFotoData = AbreTabla.Fields("PD").GetChunk(0, LngPicLen)
'
' Save to temp file
TempFile = PathABase & "\tmp.bmp"
Open TempFile For Binary As #1
Put #1, , StrFotoData
Close #1
'
' AQUI DA EL ERROR, "La imagen no es válida"
Picture1.Picture = LoadPicture(TempFile)