I havent used those methods myself, but from what I can see from the help/example on GetChunk you should be able to use this:
VB Code:
Dim bytData() As Byte
ReDim bytData(rs_dream.Fields("RTF").Size)
Set bytData = rs_dream.Fields("RTF").GetChunk(0, rs_dream.Fields("RTF").SIZE)
'(use Open again [probably with Put rather than Get) to save to a file)
If not, here's how I've done it in the past:
VB Code:
Dim stm As New ADODB.Stream
With stm
.Type = adTypeBinary
.Open
.Write rs.Fields(0).Value
End With
stm.SaveToFile filename, adSaveCreateOverWrite
stm.Close