I've been searching msdn, but couldn't find an exact API call. Is there a quick and easy way to accomplish this?
thanks
This is a discussion on Is there a quick way to clear the contents of the clipboard? within the C++ Programming forums, part of the General Programming Boards category; I've been searching msdn, but couldn't find an exact API call. Is there a quick and easy way to accomplish ...
I've been searching msdn, but couldn't find an exact API call. Is there a quick and easy way to accomplish this?
thanks
Code:if (OpenClipboard(NULL)) { EmptyClipboard(); CloseClipboard(); }