Hi,
This may be a really dumb question but I am curious.
I have a database with RTF files stored as BLOBS.
I have an ActiveX control of RichviewEdit in the database application.
Currently, to get the RTf file into Richview I need to copy the Blob to a physical file on a harddisk and then use LoadRTF in Richview.
Is it possible to somehow pass the Blob directly to Richview?
TIA
Mark
BLOB ---> RichviewEdit
-
- Site Admin
- Posts: 17520
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
Code: Select all
var Stream: TStream;
begin
Stream := Table.CreateBlobStream(Table.FieldByName(FieldName), bmRead);
try
rv.Clear;
rv.DeleteUnusedStyles(True,True,True);
Result := rv.LoadRTFFromStream(Stream);
finally
Stream.Free;
end;
rv.Format;
end;
-
- Site Admin
- Posts: 17520
- Joined: Sat Aug 27, 2005 10:28 am
- Contact: