09-21-2024, 09:37 PM
Code: (Select All)
a$ = "ON THE CLIPBOARD"
_Clipboard$ = a$
Print _Clipboard$
_Clipboard$ = " "
Print _Trim$(_Clipboard$)
I think the best you can probably do is to set it to a single space. Trying to pass a null string "" doesn't work to clear the clipboard for us. If at all possible, just pass a blank space and then trim it out of any response you recieve, like with the above.