I have a VB6 Apllication with to databases. All the two databases
contain one table with an OLE-object. Now, I want to copy the OLE-object
from one database in the other database using the following code:
Private Sub Command1_Click()
If Data1.rsBild.State = adStateClosed Then Data1.rsBild.Open
If Data1.rsPic.State = adStateClosed Then Data1.rsPic.Open
Data1.rsBild!Bild = Data1.rsPic!Bild
End Sub
(I use a DataEnvironment with two Connection-objects, so both tables re
members of the same DataEnvironment object).
I think that must work, but when I start it, in the last line there
occurs the error: "Several errors occured"
What's wrong with this??