Image Fields

F

Fishoutawater

I have an OLE Object field which always contains formatted text in RTF format.
When I look at the Datasheet grid is see the lable 'Long binary data' in
non-null fields.
I need to write a report that puts this information in an excel spreadsheet.
I want to use a construct such as

sql = "Select RTFField from Mytable where PK = 2"
set rs = db.openrecordset
if not rs.eof then
' extract RTFFieLD data and put in in a cell in an excel spreadsheet
endif

Any suggestions greatfully received, thanks
 
Top