Copies a string to the Clipboard.
ClipPut ( string )
(s) string: any text string.
(i) @TRUE if string was copied.
Use this function to copy a string to the Windows Clipboard. The previous Clipboard contents will be lost.
; The code below will convert Clipboard contents to ; lowercase ClipPut(StrLower(ClipGet( ))) a = ClipGet( ) Message("lowercase Clipboard Contents", a)