I have this intermittent and incosistent problem which has been driving me crazy for a long time: In a program of mine, GetClipboardData(CF_TEXT) succeeds 90% (or so) of the time, but every once in a while it returns NULL.

This is despite the fact that OpenClipboard() always succeeds (and return value checked) before calling GetClipboardData(CF_TEXT).

Please note that the 90% success ratio is for the same exact page! (i.e. I know there is a CF_TEXT content there)

Note: When it fails, I immediately call GetLastError() but all it returns is: "The operation completed successfully".

The code in question is as simple as:

if (::OpenClipboard(hwndW))
{
  HANDLE handleClip = ::GetClipboardData(CF_TEXT);
  if (handleClip == NULL)
    dw = GetLastError()
}

What could possibly inject the wrong GetLastError() code into this?

Any idea what could prompt such inconsistent behavior?

Is it possible that some other process is locking the clipboard? If so, how do I take it back?

How do I troubleshoot or debug something like this?

link|improve this question

OpenClipboard() doesn't tell you anything. What does EnumClipboardFormats() tell you? – Hans Passant Jan 19 '11 at 21:02
1  
How do you know the content is still on the clipboard? – Jeff Yates Jan 19 '11 at 22:53
@Jeff That's a good question. I "know" it's there because if I try again (same exact page) it will succeed. This is not really very "scientific" but when GetLastError() returns "The operation completed successfully", what else do I have in my toolkit? I am going to try Hans's suggestion to call EnumClipboardFormats(), but even if it tells me that CF_TEXT exists (or doesn't exist), it doesn't tell me why it is so inconsistent. – Android Eve Jan 19 '11 at 22:58
feedback

1 Answer

up vote 1 down vote accepted

I did a Google search and found someone else with a similar problem (scroll down to find the particular response) that turned out to be due to re-entrancy. Do you call EmptyClipboard() anywhere and then react to changes? Perhaps you have a re-entrancy problem.

Update after code snippet provided
In the code you posted, the condition is wrong before calling GetLastError. You're only calling it when you get a non-NULL result, rather than when you get a NULL result. If you fix that, you should get a better answer from GetLastError. This MSDN article should help in deciphering what the result of GetLastError actually means.

Update after corrected code snippet
My guess is that you're facing a race condition with some other application accessing the clipboard. I would recommend checking to see if you have any other tools running that might do this.

link|improve this answer
@Jeff Sorry for failing to mention that of course I called GetLastError(). This is what it returns: "The operation completed successfully". I am totally puzzled by this. – Android Eve Jan 19 '11 at 22:50
@Android Eve: I've modified my answer based on additional information. – Jeff Yates Jan 19 '11 at 22:58
@Jeff +1 for this link. Knowing my program, I think you are onto something... No, I don't call EmptyClipboard(), but I do call CloseClipboard() -- isn't this even better? Besides, even if I forget to call an empty/close function, why does GetLastError() return "successfully"? – Android Eve Jan 19 '11 at 23:04
Android Eve: Unfortunately, GetLastError returns the last error set by the last call to SetLastError on the current thread, not the last error you necessarily want to see. There's a chance that if you have a re-entrant problem, it is returning the last error of some other API call besides GetClipboardData. Also, it could be that the last error wasn't set by the call. – Jeff Yates Jan 19 '11 at 23:05
@Jeff: How would you define "re-entrancy problem" in this context? – Android Eve Jan 19 '11 at 23:15
show 7 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.