Click here to Skip to main content
15,885,435 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C++
AddClipboardFormatListener(this->GetSafeHwnd());




C++
if (IsClipboardFormatAvailable(CF_UNICODETEXT)) 
{
  if (::OpenClipboard(this->m_hWnd)) 
   {	
	HGLOBAL hg_clipdata = ::GetClipboardData(CF_UNICODETEXT);
	LPTSTR    lptstr; 			
	lptstr = (LPTSTR)::GlobalLock(hg_clipdata); 
	BOOL retv = ::GlobalUnlock(hg_clipdata); 
	BOOL ret = ::CloseClipboard(); 
    }
}



Hi im trying to get text from the clipboard. it works ok. in that lptstr gets the text fine. However if im copying from excel for example, i notice that occassionally if i select a cell color, i get an pop up "Error cannot empty clipboard". I notice that GlobalUnlock(hg_clipdata) returns 1. i cannot understand why as i have it straight after the only call to ::GlobalLock.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900