One customer traced a problem they were having to the way they
were calling a function similar in spirit to this one: HGLOBAL CopyClipboardData(UINT cf)
{ HGLOBAL hglob = NULL; HANDLE h = GetClipboardData(cf); if (h) { void *p = GlobalLock(h); if (p)
Read More...