Copy - Paste to/from Clip Board

Jenie888

Member
I want to be able to copy things to my clip board through code and then automatically paste them through code. I do not want to manually press ctrl-V.

I am aware of the functions

Edit-Cut()
Edit-Clear()
Edit-Copy()
Edit-Paste()
Edit-Undo()

However these all apply to Widgets.

Are there commands that you could say something like:

copy(table.fieldname)
Table2.FieldName = paste()

???

Thanks,
Jenifer
 

jongpau

Member
Hi Jenifer,

Try this:
Code:
CLIPBOARD:VALUE = Table.Field.

Table.Field = CLIPBOARD:VALUE.
You will have to assign the values to the database field in the correct data type, but I assume you know how to do that.

HTH.
 
Top