Hi,
i'm having difficulty with this. Messages often mention copying data from a form but does not work.
Looping through the recordset is not the problem , i want to copy the contents of a certain field to the clipboard and paste them somewhere else ( another application ).
I also need a way to empty the clipboard.
Thanks in advance
Erwin
i'm having difficulty with this. Messages often mention copying data from a form but does not work.
Looping through the recordset is not the problem , i want to copy the contents of a certain field to the clipboard and paste them somewhere else ( another application ).
Code:
dim rcs as recordset
set rcs = currentdb.openrecordset("pmo")
do untill rcs.eof
... put a field in te cliboard rcs!pmo
rcs.movenext
loop
I also need a way to empty the clipboard.
Thanks in advance
Erwin