Forum Discussion
Ravik
9 years agoSuper Contributor
Try like this, may help you
If IsNull(a) = true then
msgbox "No text on clipboard"
else
msgbox a
End If
or
You can clear your clipboard data after each operation (Copy +Paste)
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "cmd.exe /c "echo off | clip", 0, True