PASTES THE TEXT OR THE PICTURE FROM THE CLIPBOARD TO THE SYSTEM OBJECT NUMBER N
ACTION
The command CLIPBOARD_PASTE N copies the text or the picture present in the operating system clipboard to the system object number N (paste).
The system object is a MEMO, PICTURE, IMAGE.
SYNTAX:
CLIPBOARD_PASTE N
USE ERROR EXAMPLE
label copy
memo 1:rem create a MEMO
memo 2:rem create a second one
top 2,100
item_add 1,"line 1":rem add it a line
caption 0,"select this line then clic on FORM0"
on_click 0,copy
end
copy:
clipboard_copy 1
clipboard_paste 2
caption 0,"copied to the second MEMO"
return
CLIPBOARD_PASTE
CLIPBOARD_PASTE N
SEE ALSO
CLIPBOARD_COPY
CLIPBOARD_CUT