I took some C++ code and tried to change Clipboard to Notepad. When I do, I get "Notepad is not defined". I can't find any other references to Clipboard anywhere else in the code. Any ideas?
Code:
Code:
Code:
if (OpenClipboard(NULL))
{
EmptyClipboard();
SetClipboardData(CF_TEXT, hMem);
CloseClipboard();
Comment