Hi,
I've been trying to insert a field which has OLE Object data type (in this case Text_Word) from one table into another, using the following VB code:
which rst![Text_Word] is a recordset from another table, say Table2.
Normally this code will work if no OLE Object is involved.
Is there a clue out there?
Andre
I've been trying to insert a field which has OLE Object data type (in this case Text_Word) from one table into another, using the following VB code:
Code:
qryInsert = " INSERT INTO Table1(ID, Text_Word) " & _
" VALUES( " & ID & ",'" & rst![Text_Word] & "')"
...
which rst![Text_Word] is a recordset from another table, say Table2.
Normally this code will work if no OLE Object is involved.
Is there a clue out there?
Andre