Hi,

I have the following code to copy fields into another Access Database Table. I am having hard time to copy teh OLE Object field which contains image information.

MySqlText = "INSERT INTO BackupTable (OriginalID, Image1) VALUES(" & de1.rsOriginal("ID") & ", '" & de1.rsOriginal("Image1") & "');"

Image field is the OLE Object field

Could anyone tell me how to copy OLE Object fields from one table to another?

Thanks