• Welcome to Jose's Read Only Forum 2023.
 

Equivalent of PB CLIPBOARD RESET command

Started by Chris Chancellor, November 25, 2018, 06:27:35 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Chris Chancellor

Hello Charles

in PB there is a CLIPBOARD RESET command  which clears all the contents of a clipboard

what is its equivalent command in O2 ?



José Roca

#2
There is no equivalent. Use the clipboard api functions OpenClipboard / EmptyClipboard / CloseClipboard.

Chris Chancellor

Thanxx a lot  Sir Jose


i have build the new code to replace  CLIPBOARD RESET command


'==================
' To clear the ClipBoard
Sub ClipB_Reset
         OpenClipboard Null
          EmptyClipboard
          CloseClipboard
End Sub