The clipboard-interaction tag has no wiki summary.
25
votes
10answers
7k views
Wysiwyg with image copy/paste
First, I understand that an image cannot be "copied" from a local machine into a website. I understand that it must be uploaded. I am a web programmer, and am familiar with common web wysiwyg tools ...
12
votes
1answer
249 views
How do you copy and paste from a THtmlViewer object?
At the moment I have the following hack:
procedure TForm1.HTMLViewer1KeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
begin
if (Key = Word('C')) and (Shift = [ssCtrl]) then
...
2
votes
2answers
131 views
managing clipboard
Is there any good tutorial that shows how to manage clipboard with C# programming.
1
vote
1answer
57 views
Reading locale info from Clipboard
using .NET Clipboard API you can write following code:
//dataObject - instance of IDataObject, received from Clipboard
if (dataObject != null)
{
if (dataObject.GetDataPresent(DataFormats.Locale))
...
1
vote
1answer
107 views
How to free clipboard locked by another process?
I have an issue where in i am trying to retrieve object from clipboard modify it and add it back ...
Time and again I keep getting
requested operation on clipboard could not be performed
Looks ...
1
vote
2answers
432 views
Copying formated text into clipboard
Hi
I have strange problem with coping text into clipboard. I want to copy text from textbox with additional formatting. In order to do that I intercept KeyDown event on textbox and I check if keys ...
1
vote
1answer
296 views
In what circumstances will GetClipboardData(CF_TEXT) return NULL?
I have this intermittent and incosistent problem which has been driving me crazy for a long time: In a program of mine, GetClipboardData(CF_TEXT) succeeds 90% (or so) of the time, but every once in a ...
0
votes
1answer
42 views
How to extend QClipboard?
How can I extend QClipboard to allow selection of all text in all open windows.
Please provide code.
Thanks
0
votes
1answer
673 views
cross browser jquery code to copy to clipboard?
jquery or JavaScript code for copy content of an element to clipboard is very important as far as I think. Because I needed it for my project here and I spend two-three days just for it. I had done ...
0
votes
2answers
463 views
Listener for clipboard content change?
Is there a way to register a method so that it's automatically called as soon as the user ends "text selection mode" (thereby copying selection to clipboard)?
0
votes
0answers
189 views
Detect when something is pasted from clipboard in Python
Is there a way to monitor when a user pastes data from the Linux clipboard? I want to know if a Ctrl-V or menu paste has occurred (not middle-click pasting of a selection), in any application. I have ...
0
votes
1answer
88 views
Preventing what was/were previously copied on to my clipboard from appearing on R Console when using R
I am having some problems with my clipboard contents when using R. When I run my scripts/commands in tinn-r, very often I would get something that I had ran earlier pasted onto my R Console instead of ...