Ver Mensaje Individual
  #3  
Antiguo 27-01-2005
jsc jsc is offline
Miembro
 
Registrado: nov 2003
Posts: 144
Reputación: 21
jsc Va por buen camino
Muchas gracias por la ayuda,pero algo estoy haciendo mal... no me funciona.He probado a definir [CampoBlob] como un TBlobField, TBlobStream... pero no me funciona.Por otro lado he probado también algo más sencillito que he visto por la ayuda
Cita:
procedure TForm1.Button1Click(Sender: TObject);
var
Stream1 : TBlobStream;
begin
Stream1 := TBlobStream.Create(Table1Foto, bmRead);
try
Image1.Picture.Bitmap.LoadFromStream(stream1);
finally
Stream1.Free;
end;
end;
pero aun y con esto también estoy igual.
¿A alguien se le ocurre, algo? No se qué hago mal. Agradecería mucho vuestra ayuda.
Un saludo
Responder Con Cita