Hi Gurus
I store a Word Doc in a OLE field in a table. I use ADO to retrieve the related Word Doc from the table. I want to view it in a OLE Container on the Form.
With normal Text boxes its easy:
While not rstDoc.EOF
Me!txtDoc.text = rstDoc!WordDoc
rstDoc.movenext
Wend
But an OLE Container does not have a value property in which I can stick the data.
Then I have to print the content of this container out on an Access report.
If anyone has done something like this before, pls could you point me in the right direction?
Thanks
Len
I store a Word Doc in a OLE field in a table. I use ADO to retrieve the related Word Doc from the table. I want to view it in a OLE Container on the Form.
With normal Text boxes its easy:
While not rstDoc.EOF
Me!txtDoc.text = rstDoc!WordDoc
rstDoc.movenext
Wend
But an OLE Container does not have a value property in which I can stick the data.
Then I have to print the content of this container out on an Access report.
If anyone has done something like this before, pls could you point me in the right direction?
Thanks
Len