![]() | Products |
| Home » Technical Support » ElevateDB Technical Support » Incident Reports » Incident Reports Addressed for Version 2.04 » View Incident Report |
| Reported By: Andrew Hill Reported On: 8/17/2010 For: Version 2.04 Build 1 |
procedure TfMain.icbClientsPropertiesCloseUp(Sender: TObject);
var
ms: TMemoryStream;
bs: TEDBBlobStream;
begin
Table1.First;
while not Table1.Eof do begin
bs:= TEDBBlobStream.Create(TBlobField(fmain.Table1.FieldByName('Image')), bmRead); // Takes a very long time
bs.Seek(0, soFromBeginning);
ms:= TMemoryStream.Create;
ms.CopyFrom(bs, bs.Size);
ms.Seek(0, soFromBeginning);
bs.Free;
Table1.Next;
end;
end;This web page was last updated on Sunday, February 22, 2026 at 11:19 PM | Privacy Policy © 2026 Elevate Software, Inc. All Rights Reserved Questions or comments ? |

