Skip to content

Instantly share code, notes, and snippets.

@davidglezz
Created November 4, 2013 16:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davidglezz/7305294 to your computer and use it in GitHub Desktop.
Save davidglezz/7305294 to your computer and use it in GitHub Desktop.
Copy textbox to clipboard
// HWND of text element
void CopyEditToClipboard(HWND hWnd)
{
SendMessage(hWnd, EM_SETSEL, 0, 65535L);
SendMessage(hWnd, WM_COPY, 0 , 0);
SendMessage(hWnd, EM_SETSEL, 0, 0);
}
// Example
CopyEditToClipboard(GetDlgItem(hwndDlg, IDC_EDIT_MAIN));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment