"go" how does C + + read and write the contents of the Windows clipboard? for example, automatically copy a string.

Source: Internet
Author: User

Copying data to the Clipboard
BOOL CopyToClipboard (const char* pszdata, const int Ndatalen)
{
If (:: OpenClipboard (NULL))
{
:: EmptyClipboard ();
Hglobal clipbuffer;
Char *buffer;
Clipbuffer =:: GlobalAlloc (gmem_ddeshare, ndatalen+1);
Buffer = (char *):: GlobalLock (clipbuffer);
strcpy (buffer, pszdata);
:: GlobalUnlock (clipbuffer);
:: SetClipboardData (cf_text, clipbuffer);
:: CloseClipboard ();
Return TRUE;
}
Return FALSE;
}

Getting data from the Clipboard
BOOL Gettextfromclipboard ()
{
If (:: OpenClipboard (NULL))
{
Get Clipboard data
Hglobal Hmem = GetClipboardData (cf_text);
If (NULL! = Hmem)
{
char* lpStr = (char*):: GlobalLock (hmem);
If (NULL! = LpStr)
{
MessageBox (0, lpStr, "", 0);
:: GlobalUnlock (hmem);
}
}
:: CloseClipboard ();
Return TRUE;
}
Return FALSE;
}

From:https://zhidao.baidu.com/question/647698977954822045.html

"go" how does C + + read and write the contents of the Windows clipboard? for example, automatically copy a string.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.