Tagged Questions
0
votes
0answers
17 views
Make paste button for browser, using c#
View screenshot of application
How can I paste text from details text box to browser text box as shown.
add button is to add text from description text box to clipboard.
Now it should paste text ...
0
votes
2answers
66 views
How do I paste to console Vim from the system clipboard?
I can copy text from Vim to other Mac applications with "*y. But when I try to paste into Vim, from TextEdit for example, I cannot paste text with "*p. Is there some setting that I missed?
0
votes
0answers
26 views
Clipboard not getting refreshed after copying from Signed Applet the first time
I have a Signed Applet. Before copying any string etc. from the applet, I am able to paste data into the applet's textfield from external source such as a text file.
But once I copy some string from ...
0
votes
1answer
32 views
Passing text data from silverlight to plain page
I have written app in silverlight which reads qr codes from webcam. I need to pass data (paste pure text) from silverlight to active field on page which contains silverlight, but not inside ...
0
votes
0answers
59 views
Understanding the clipboard: why is getPrimaryClip() always null
I'm trying to implement paste-functionality in my app for pasteing images by passing the URI.
My problem is, that the getPrimaryClip()method always returns null if an image (for example a png from ...
0
votes
1answer
75 views
Override the general paste context menu in Android
I think that this is not possible but I think it is better to ask someone who knows the answer for sure.
Is it possible to create an android application that affect the context menu in all ...
0
votes
3answers
189 views
Get data from then back to Windows Clipboard
I would like to get the data currently stored in the Windows Clipboard and save it in a variable, then put the data back into the clipboard.
Right now I'm using this code:
object l_oClipBrdData = ...
1
vote
0answers
100 views
How to avoid IE message “… allow this webpage to access the clipboard” programmatically?
Please have a look at this fiddle. I'd like to catch the IE paste event, do s.th. with the data to be pasted and paste it then. This should also be possible to be done by clicking a button. Everything ...
4
votes
1answer
452 views
In chrome, using the window.Clipboard object, is there a way to capture pasted text?
You can capture an image. I am trying to figure out how to capture text. I'm guessing there isn't, for security reasons, but I wanted to make sure.
Also is there a reference for this stuff? ...
3
votes
3answers
383 views
Detecting paste from clipboard in ToolStripTextBox (C#)
I need to detect if a user pastes text from the clipboard into a ToolStripTextBox. Therefore I've created a custom control which inherits from ToolStripTextBox. Then I wanted to override WndProc to ...
4
votes
1answer
168 views
VIM pasting from system clipboard in insert mode and then repeat (.) fails
I'm in in MacVim, but I'm guessing this applies to gVim as well. In insert mode, if I paste from the system clipboard ⌘-v then get out Esc then repeat . all it does is move the cursor back a space. ...
0
votes
1answer
67 views
Clipboard copy action - whose file is the content?
I need to track copy-paste actions in Windows and Linux (I'm assuming gnome/unity) towards my app monitoring the clipboard content and the originating file's location (path)
How can I accomplish ...
2
votes
1answer
556 views
How to paste a transparent image from the clipboard in a C# winforms app?
Note: This question is about pasting from the clipboard, not copying to the clipboard. There are several posts about copying to the clipboard, but couldn't find one that addresses this question.
How ...
1
vote
1answer
166 views
Java clipboard invoke paste operation
I would like to invoke a paste operation with my java application. Is this possible without using Robot?
For example, the application would invoke a paste operation every so often, so when I am ...
5
votes
1answer
686 views
Pasting images from clipboard in Firefox suddenly enabled (tinymce)
I'm using TinyMCE for richtext editing in a webmail client. Suddenly, after years and years of begging us to build something like this, customers are able to paste images directly from the clipboard ...
0
votes
0answers
266 views
Custom copy, paste and delete in java using JTextArea
I have an arraylist of some object ArrayList<Object_Name> which I want to use it as a custom clipboard. Is there a way where I can cut, copy, paste and delete the strings that I enter in the ...
1
vote
2answers
6k views
javascript cut/copy/paste to clipboard: how did Google solve it?
Yes, this question has been asked again and again: how to copy and paste from and to the system clipboard with javascript? I have found only partial solutions and hacks so far.
The reason that it has ...
0
votes
0answers
666 views
Paste from clipboard in ActionScript3
In ActionScript3 i was trying to make 2 buttons to copy and paste text to/from a TextField and copying text works great however with paste in FlashDevelop i always get the following error:
...
0
votes
1answer
232 views
Java Clipboard Paste Checker?
I'm using Java with latest JDK 6 up.29 nor JDK 7.
And I'm glad that I could use the Clipboard via Java by using StringSelection and Clipboard classes. But, I got a new question regarding about this ...
2
votes
1answer
135 views
File/Folder right-click 'Copy' action, how does it copy to clipboard?
I'm making an app that has some functionality of windows explorer. Actually I have to make a copy/paste actions. My question is what does windows copy to clipboard, when I'm right-clicking the file ...
1
vote
3answers
1k views
How to copy and paste text from any windows application (second clipboard)
I have a windows desktop application in c# (WPF), which is basically an issue managing application for a call center. It manages (adds, edits, deletes,...) customer issues (records in database), where ...
1
vote
2answers
124 views
How would I go about pasting from the system clipboard to an arbitrary window in java?
I am making a chat program that will paste the text the user puts in a certain number of times which essentially crowds the victims screen with a bunch of messages. I have already copied the text on ...
0
votes
4answers
2k views
Auto-copy to clipbord onfocus
I have a textarea that includes information. It has an onfocus attribute which selects all text inside it automatically (onfocus="this.select();). I want that when I focus on the textarea, all the ...
2
votes
2answers
3k views
How do you copy/paste from the clipboard in C++?
I'm still a C++ newbie who has only recently learned some file manipulation. I looked it up online and the codes given are way beyond my current skill. Is there a simple way to do this, or are there ...
0
votes
4answers
4k views
Get current clipboard content?
I'd like to know a way to make my script detect the content of the clipboard and paste it into a text field when the page is opened, with no input from the user. How can it be done?
3
votes
1answer
3k views
Paste from Excel to WPF DataGrid
I have a DataGrid (called TheGrid) that I would like to implement copy and paste functionality on. The copy functionality works great but I don't know how to implement paste. Do I just need to get the ...
6
votes
1answer
390 views
Include formatting information in windows clipboard copy buffer for pasting into Excel
My application writes tabular data to the windows copy buffer for the user to paste into Excel. This works fine for unformatted tabular data including tab-stops and new lines for cell and row ...
1
vote
2answers
7k views
How to read clipboard data in cross browser? [duplicate]
Possible Duplicates:
Copy / Put text on the clipboard with FireFox, Safari and Chrome
How to Copy to Clipboard in JavaScript?
Hi ,
scenario: I copied some content (either from notepad or ...
2
votes
1answer
145 views
Why upon explorer window closing several GetClipboardData are launched?
I m developping a little soft to notify users when they are pasting content in unauthorized applications, i hook the GetClipboardData to do so. Nearly everything is working fine but when i copy ...
0
votes
1answer
192 views
how to differentiate auto getclipboarddata from real content pasting?
i'm trying to dev a simple tool which notify the user when he is pasting content into an unthorized application. I ve hooked the getclipboarddata function to do this. But application like MS office ...
3
votes
1answer
2k views
Create and Copy hyperlink with text/caption to Clipboard with c#
In all sorts of programs you can copy hyperlinks to clipboard and paste them into other applications. E g the ’feedback always welcome’ link at the bottom of this page can be copied and pasted into MS ...
4
votes
3answers
3k views
6
votes
3answers
3k views
Paste an image into a web page
Is it in any way possible, using javascript (jquery), html (5) to get a pasted image.
e.a a user click the printscreen button, opens a web page, clicks CTRL+V and the image is uploaded to the server ...
1
vote
1answer
253 views
javascript paste and multiple clipboard levels
After searching the Internet and doing some unsuccessful experiences trying to do paste using javascript on the Opera browser, I want to ask:
1) Is there a way I can do paste in javascript that works ...
3
votes
3answers
1k views
How can Python access the X11 clipboard?
I want my Python script to be able to copy and paste to/from the clipboard via x11 (so that it will work on Linux). Can anyone point me to specific resources I can look at, or the concepts I would ...
3
votes
3answers
938 views
Paste from clipboard in vim script
I want to write a vim function that includes pasting from the clipboard (windows if it matters)
I think it should be something like
function MyPastingFunc()
"+p "paste from clipboard
"do more ...
4
votes
2answers
356 views
Provide “Paste Link” Functionality in C# Winforms App
I would like to add Copy-Paste Link functionality to an application. The application replaces a complex Excel workbook. I would like to be able to copy tables, text, and charts from the application ...
4
votes
2answers
4k views
How to get a clipboard paste notification and provide my own data?
For a small utility I am writing (.NET, C#), I want to monitor clipboard copy operations and clipboard paste operations.
My idea is to provide my own data when pasting into an arbitrary application.
...
0
votes
2answers
759 views
How to check Data Set In The Clipboard
Im copying data (text) to a clipboard but the data that I'm copying to the clipboard has a length of 30,500,000.
This text is stored in a StringBuilder.
These are may codes:
StringBuilder ...
3
votes
1answer
963 views
Copy/Paste in JavaScript?
I know this question was asked like a million times by now, but I couldn't really find a good up-to-date solution.
I've implemented my own menu to provide the user the ability to Cut, Copy and Paste ...
4
votes
3answers
4k views
Paste text from Clipboard using button
I have control bar buttons Copy, Cut, and Paste and they suppose to copy/paste some text/objects from and to clipboard.
Copy/Cut works fine.
Paste using CTRL+V and context menu works fine as well.
...
0
votes
1answer
535 views
How to read copied html text from clipboard with its html tags?
When a user selects and copies a text from a web page, I need to get that text with all the html tags included so that I can select some specific attributes etc.
Is it possible to read it from .NET ...
0
votes
5answers
2k views
Adding an 'paste screenshot' option to Mantis bugtracker
We're using the Mantis bugtracker (version 1.1.8), which is based on PHP. To ease the workflow of adding bugs we'd like to add an option to paste screenshots from the clipboard directly into the 'new ...
16
votes
3answers
10k views
How to paste CSV data to Windows Clipboard with C#
What I'm trying to accomplish
My app generates some tabular data
I want the user to be able to launch Excel and click "paste" to place the data as cells in Excel
Windows accepts a format called ...
