The clipboard is a software facility that can be used for short-term data storage and/or data transfer between documents or applications, via copy and paste operations.

learn more… | top users | synonyms

233
votes
16answers
144k views

How to Copy to Clipboard in JavaScript?

What is the best way to copy text to the clipboard? (multi-browser) I have tried: function copyToClipboard(text) { if (window.clipboardData) // IE { ...
45
votes
12answers
43k views

Copy / Put text on the clipboard with FireFox, Safari and Chrome

In Internet Explorer I can use the clipboardData object to access the clipboard. How can I do that in FireFox, Safari and/or Chrome?
37
votes
6answers
45k views

Copy text to the client's clipboard using jQuery

The workflow is simple: You click inside a textarea. The text is copied to the client's clipboard. Display notice to the user. How do you do it?
30
votes
6answers
6k views

Pipe to/from Clipboard

Is it possible to pipe to/from the clipboard in bash? Whether it's piping to/from a device handle or using an auxiliary application, I can't find anything. For example, if /dev/clip was a device ...
27
votes
4answers
8k views

Clipboard event C#

Is there a clipboard changed or updated event that i can access through C#?
21
votes
4answers
5k views

How to handle blocked Clipboard and other oddities

Over the course of the last couple of hours I have been tracking down a fairly specific bug with that occurs because another application has the clipboard open. Essentially as the Clipboard is a ...
21
votes
3answers
4k views

Yank file name / path of current buffer in Vim

Assuming the current buffer is a file open for edit, so :e does not display E32: No file name. I would like to yank one or all of: The file name exactly as show on the status line, e.g. ...
20
votes
6answers
7k views

How to copy the contents of a String to the clipboard in C#?

If I have some text in a String, how can I copy that to the clipboard so that the user can paste it into another window (e.g. from my application to Notepad)?
20
votes
7answers
14k views

Paste an image from clipboard using java script

How do we paste an image from clipboard into a custom rich text editor using javascript? (ctrl+c and ctrl+v or a snapshot). Has anyone used Ajax's rich text editor? Does pasting an image from ...
18
votes
9answers
4k views

vim - yank entire file

I often write something in gvim, then need to copy-paste it into another application. Is there an easy way to yank the entire file? I usually do something like this, but is there a better way that ...
18
votes
6answers
15k views

Webcam usage in C#

I am making a program in C# to connect to a webcam and do some image manipulation with it. I have a working application that uses win32 api (avicap32.dll) to connect to the webcam and send messages to ...
17
votes
4answers
14k views

JavaScript get clipboard data on paste event (Cross browser)

Is there any way for detecting the paste event AND getting the pasted data? Let's say at least for MSIE and Gecko. MSIE has clipboardData.getData() but I did not find something similar for ...
15
votes
2answers
4k views

Get CSV Data from Clipboard (pasted from Excel) that contains accented characters

SCENARIO My users will copy cells from Excel (thus placing it into the clipboard) And my application will retrieve those cells from the clipboard THE PROBLEM My code retrieves the CSV format ...
15
votes
11answers
7k views

vim: copy selection to OS X clipboard

There must be a really simple solution here that I'm missing: Say you've got an area selected in vim. How can you copy it into the OS X clipboard? (Hint: the OS X clipboard can be written to via ...
13
votes
1answer
3k views

Secret copy to clipboard JavaScript function in Chrome and Firefox?

In the console windows of both Chrome and Firefox on Mac I can execute copy("party in your clipboard!"); and the text gets copied to my clipboard. I have searched SO and Google and can't seem to ...
12
votes
6answers
35k views

How can I enable copy and paste between my host and VMware guest OS? [closed]

I have a VMware 6 Workstation installation running on my XP 64-bit host OS. I have a 32-bit Windows 2003 guest. I simply want to be able to put something on the clipboard in one world and paste it ...
11
votes
3answers
648 views

how does clipboard work in windows

what is its data structure? is it xml based? how can it distinguish different content types? text, image, files...
11
votes
3answers
1k views

How does Copy Paste of formatted text work?

I'm confused about what implements the functionality of copy and paste. This is exactly what I'm confused with: When I copy formatted text from MS Word (which uses a different markup language than ...
10
votes
3answers
227 views

Making a JEditorPane with html put correctly formatted text in clipboard

I have this code to demonstrate the problem: public static void main(String[] args) { JFrame frame = new JFrame(); frame.getContentPane().add(new JEditorPane("text/html", "Hello cruel ...
10
votes
4answers
842 views

How do you copy arbitrary data to the clipboard as a file?

We develop a database application. The user asks for a new feature, to copy blobs into the clipboard such that Windows Explorer can paste them as new files. One solution is to save the blobs into a ...
10
votes
5answers
14k views

Is it possible to read the clipboard in Firefox, Safari and Chrome using Javascript?

I'm trying to read the contents of the clipboard using Javascript. With Internet Explorer it's possible using window.clipdData.getData("Text") Is there a similar way of reading the clipboard in ...
9
votes
3answers
2k views

How to monitor clipboard content changes in C#?

I want to have this feature in my C# program: When the user do Ctrl+C or Copy anywhere (i.e. when the clipboard content changes), my program will get notified, and check whether the content met ...
8
votes
4answers
347 views

Determine if System Clipboard Images are equal

I am not sure if my problem is platform specific, but I think it is not. Because my expirience is based on the Windows specific java.awt.Toolkit and the Windows-Clipboard. The following example class ...
8
votes
1answer
684 views

How do I capture bash output to the Mac OS X clipboard?

Is it possible to capture bash output to the OS X clipboard?
8
votes
2answers
877 views

Injecting text when content is copied from Web Page

I ran into a a site that injects a "Read More: " line at the end of any text that you highlight and copy from it's pages. I've never seen this before, and without severely digging into their code, I ...
8
votes
6answers
5k views

How do I copy a string to the clipboard on Windows using Python?

Hey there, I'm kind of new to Python and I'm trying to make a basic application that builds a string out of user input then adds it to the win32 clipboard. I'm having a problem passing the string to ...
8
votes
3answers
7k 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 ...
7
votes
2answers
1k views

How to copy data to clipboard in C#

If I have a string, e.g "hello", how can I do in C# that it will be copy to the System Clipboard, so next time I'll do CTRL + V I'll get "hello"?
7
votes
3answers
2k views

How do I get the selected text from the focused window using native Win32 API?

My app. will be running on the system try monitoring for a hotkey; when the user selects some text in any window and presses a hotkey, how do I obtain the selected text, when I get the WM_HOTKEY ...
7
votes
8answers
1k views

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine's clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...
7
votes
2answers
9k views

Copy text to clipboard with iPhone SDK

Hi What is the best way to copy text to the iphone's clipboard in your application, their docs are sketchy and have way too many features than what i want... i just want to set a string as the users ...
7
votes
5answers
3k views

How do I put some formatted text into the Clipboard?

I'm writing a unit test for a "Text Scrubber" utility that will remove any formatting, etc. from the text on the clipboard. For example, if you copy some text from a Word document or a web page with ...
6
votes
1answer
622 views

Paste image into rich text (like gmail)

I want to be able to copy an image from clipboard, specifically screenshots, and paste them right into a rich text editor, and/or have that file uploaded. We only use chrome so it only has to work for ...
6
votes
2answers
343 views

How can I copy the output of a command directly into my clipboard?

How can I pipe the output of a command into my clipboard and paste it back when using a terminal? For instance: cat file | clipboard
6
votes
4answers
3k views

Copy to Clipboard in Chrome Extension

I'm making an extension for Google Chrome and I have hit a snag. I need to copy a readonly textarea's content to the clipboard on click in the popup. Does anyone know the best way to go about this ...
6
votes
4answers
744 views

Need Help Setting an Image with Transparent Background to Clipboard

I need help setting a transparent image to the clipboard. I keep getting "handle is invalid". Basically, I need a "second set of eyes" to look over the following code. (The complete working project at ...
6
votes
2answers
507 views

c# catch clipboard changes, wont work if form minimized to tray

i have a problem using the "Catch Clipboard Events code" found on this link : http://stackoverflow.com/questions/621577/clipboard-event-c/2487582#2487582 the code works great only if the form stays ...
6
votes
3answers
1k views

Can python send text to the Mac clipboard

I'd like my python program to place some text in the Mac clipboard. Is this possible?
6
votes
2answers
3k views

How to copy to clipboard with GWT?

Couldn't find anything on this with a Google Search. Does anyone know how to copy some text to the clipboard through GWT Java code? I'd like to avoid the raw javascript injection solution. Any help ...
6
votes
4answers
591 views

Clipboard viewer for programming purposes

I need a clipboard viewer in order to understand the type and contents of the data I'm receiving. Is there any such program available, (for Windows) that lets you explore any type of data currently in ...
6
votes
2answers
8k views

Copy files to clipboard in C#

I have a WinForms TreeView (node, subnodes). Each node contains in it's Tag some additional info. Also, each nodes maps a file on the disk. What's the easiest way copy/cut/paste nodes/files in C#? ...
5
votes
2answers
68 views

R: Function to copy to clipboard on Mac/OSX?

I've seen a Windows function to copy to the clipboard in R. Is there an equivalent function for Mac OSX?
5
votes
5answers
70 views

what is really in my clipboard? how does it interact with webpage?

When I copy some content in a webpage, what will really happen? What will be saved in my clipboard buffer? I once thought it's plant text, however, I can paste it's style or images in M$ Word or some ...
5
votes
2answers
73 views

Java clipboardOwner Purpose?

I wrote an Java application that copies a string to the system clipboard. The constructor uses Clipboard.setContents(Transferable contents, ClipboardOwner owner) ...
5
votes
1answer
65 views

Is there a way in Linux-based operating systems to determine the source of text copied to the X clipboard?

Quick background info: I'm starting to build some software that will run within Gnome- and X-based operating systems to manage clipboard contents. One of the main functions will be to record the ...
5
votes
1answer
161 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 ...
5
votes
2answers
1k views

Requested Clipboard operation did not succeed

Exception Type: ExternalException Message: Requested Clipboard operation did not succeed. Method: ThrowIfFailed Source: System.Windows.Forms Stack Trace: at ...
5
votes
1answer
378 views

Copy file from TrueCrypt volume to clipboard?

I use this code to copy files to Clipboard: IDataObject data = new DataObject(); data.SetData(DataFormats.FileDrop, new string[] {@"X:\test.doc"}); MemoryStream memo = new MemoryStream(4); byte[] ...
5
votes
2answers
2k views

The function to show current file's full path in mini buffer

I need to get the full path of the file that I'm editing with emacs. Is there a function for that? If not, what would be the elisp function for getting that? How can I copy the result (path name) to ...
5
votes
2answers
356 views

How does X11 clipboard handle multiple data formats?

It probably happened to you as well - sometimes when you copy a text from some web page into your rich-text e-mail draft in your favorite webmail client, you dislike the fact that the pasted piece has ...

1 2 3 4 5 14