Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
BOOL CMyEdit::GetClipboardBuffer(CString& cBuffer)
{
BOOL bPresent = FALSE;
HGLOBAL hglb;
LPTSTR lptstr;
if ( OpenClipboard() )
{
hglb = GetClipboardData(CF_TEXT);
if (hglb != NULL)
{
lptstr = (LPTSTR)GlobalLock(hglb);
if ( lptstr != NULL )
{
cBuffer = lptstr;
bPresent = TRUE;
GlobalUnlock(hglb);
}
}
CloseClipboard();
}
return bPresent;
}