
please wait
SetClipboardData(CF_TEXT, (void*)modifiedText.c_str());
Has anyone else on here run into the same/similar issues, and how did they solve it? //I was using a plain old HANDLE to store modifiedText.c_str(). Will I have to upgrade to HGLOBAL, or something?
OpenClipboard(0)
to open the clipboard, which is a HUGE no: http://msdn.microsoft.com/en-us/library/windows/desktop/ms649048%28v=vs.85%29.aspx . My problem stems from the fact that I don't know what argument OpenClipboard() should receive for moving text to the clipboard //and my GCC compiler is throwing a fit about my use of OpenClipboard() with no argumentsOpenClipboard(HWND);
takes, as its parameter, a handle to the window that is using the clipboard, but I wish to place the data on the clipboard for the browser (whatever they are running), and possibly this program that I am making, to use the clipboard. I was thinking of implementing some version of the code snippet found here: http://www.cplusplus.com/forum/beginner/33250/ , but have no idea as to how hWnd is defined. //I try typing that into my Code::Blocks IDE and it doesn't know what the hell I am talking about. I know that typeid(hWnd).name() == "HWND";
(or some child of it), but is it being initialized to the current window (hopefully, not 0....) upon declaration?