Below is some outline code I used for saving stuff from a word doc to a text field. I haven't included all the code just the BLOB code.<br><br>sSql = "Select * from issues "<br><br>Set RS = cn.OpenResultset(sSql, rdOpenDynamic, rdConcurLock)<br><br> DataFile = 1<br> <br> If status = display Then GoTo update<br> <br> RS.AddNew<br> <br> If txtDir <> "" Then<br> Const conChunkSize = 32768<br> Open filen For Binary Access Read As DataFile<br> Fl = LOF(DataFile) ' Length of data in file<br> If Fl = 0 Then Close DataFile: Exit Sub<br> Chunks = Fl \ conChunkSize<br> Fragment = Fl Mod conChunkSize<br> RS!doc.AppendChunk Null<br> <br> ReDim Chunk(Fragment)<br> Get DataFile, , Chunk()<br> RS!doc.AppendChunk Chunk()<br> <br> For i = 1 To Chunks<br> ReDim Chunk(conChunkSize)<br> Get DataFile, , Chunk()<br> RS!doc.AppendChunk Chunk()<br> Next i<br> End If<br><br><br>''''''''''''''''''''''''<br>Cal <p>Cal<br><a href=mailto: > </a><br><a href= > </a><br>