Interrogating clipboard contents
-
Hi fellow developers, I've writing a handler for WM_CHAR What I want to do if the cut, copy or paste is used. How programatically examine what text ins in clipboard. You help would be greatful if someone could provide me with code. Thanks Alton
-
Hi fellow developers, I've writing a handler for WM_CHAR What I want to do if the cut, copy or paste is used. How programatically examine what text ins in clipboard. You help would be greatful if someone could provide me with code. Thanks Alton
See this CP article[^] and this MSDN article[^]. /ravi My new year's resolution: 2048 x 1536 Home | Articles | Freeware | Music ravib@ravib.com
-
Hi fellow developers, I've writing a handler for WM_CHAR What I want to do if the cut, copy or paste is used. How programatically examine what text ins in clipboard. You help would be greatful if someone could provide me with code. Thanks Alton
try these Api's OpenClipboard :- for Opening Clipboard IsClipboardFormatAvailable :- Checking the requested Data format available. SetClipboardData/GetClipboardData :- For Geting and Setting data into or from Clipboard
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta