clipboard

Is there a way to findout the source application from which tha data has been copied to clipboard-Windows Forms

Hi, I am using Clipboard object to play with data copied to clipboard. Lets say I have few application from which I can copy data to clipboard like excel,notepad,etc. I want to know is there any function or is there any way to find out from where the data is captured in clipboard example is it coming from excel or notepad or from some u...

How to read copied html text from clipboard with its html tags?

Hi, 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 application? thanks ...

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 Flash? My primary target is IE8, but would like to support FF and Chrome also. I have seen the technique to do this using Flash, but am loo...

enabling clipboard for firefox portable?

i'm using the xinha wysiwyg editor and would like to enable the clipboard (for using the menu icons: copy, cut, paste) i've googled but couldn't find a working method - only for adding some settings capability.policy.allowclipboard.Clipboard to the user.js unfortunately my firefox portable has no user.js :( can someone tell me where ...

communicate between Firefox extension and .NET application

I am looking for a better way to pass information between my Firefox extension and .NET application. Currently, I am using text files to pass information one way to the .NET application by using the FileSystemWatcher class. The .NET application watches for new files in a specific directory when the Firefox extension writes to it and th...

Can I attach an image from the clipboard?

I have a function which is responsible for generating an Outlook email with the appropriate information. However, I wish to attach an image from the clipboard. I can already detect if there is an image present in the clipboard and use the picture box control to display it. IDataObject data = Clipboard.GetDataObject(); Image img = (Image...

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

Is it possible to capture bash output to the OS X clipboard? ...

Extract part of an url using a bookmarklet or similar (e.g. firefox addon)

Does anybody know of a bookmarklet or firefox addon that let's you extract part of an url. Specifically I want to extract the message id from a gmail conversation. Every message in gmail has a unique ID. The url may look like this: https://mail.google.com/a/domain.com/#all/1251b8f40722a3c2 What I want, is to be able to extract the last...

how to copy to the clipboard in F# ?

And more specifically, in fsi? ...

linux clipboard read/write in C

I done lots of googling but I am still unsure on how to proceed. What's the most common way of reading/write to the clipboard under Linux? I want both support for Gnome & KDE desktops. Updated: do I take there isn't an easy solution and one must "aggregate" together multiple sources (gnome, kde) in order to craft a solution? ...

Visual Studio: ctrl+shift+v opens clipboard ring window

Hi, I'm trying to get the clipboard ring working by pressing ctrl+shift+v, but this only opens a window showing what the clipboard contains. I would like the items to cycle through as I press v, not open in a window. ctrl+shift+insert works as expected, and they both seems to be mapped to Edit.CycleClipboardRing, so why don't they beha...

How can I grab exclusive access to the clipboard for testing purposes?

I have an app which, long story short, uses the clipboard for part of its operation. Sometimes though, for reasons I've never 100% nailed down, sometimes the clipboard isn't available. Sometimes the RDC client blocks it, sometimes it doesn't. And it's one of those extremely hard to reproduce when you really need to sorts of deals. Coul...

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? ...

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. But when I'm trying to access Clipboard via control bar button click handler it throws error SecurityError: Error #2179: The Clipboard.gene...

JTextArea.copy() clipboard cleared when prorgam exits

I have a JDialog with a JTextArea component. This dialog shows the user what arguments to use when running the program to have it run the mode they just set up. I have a button on the dialog to copy the arguments to clipboard. This uses the copy() method on the JTextArea object. This works perfectly and the clipboard contains the correc...

Transferring data between Remote Desktop and Client

Hello. I have an application that people use through Remote Desktop/Terminal Server. The application supports digital signatures. Well, the digital signature pad is on the client, but the program runs on the server. The signature pad also does not support being shared as a device through Remote Desktop(not listed with "Supported Plug And...

Send selected text to a command line argument

I found this utility, pytranslate, which translates a variety of languages into each other using Google's translation API. It works exactly as described. However I've gotten sick of selecting a word I do not understand, then middle-clicking it into the command. The command format is as such: pytranslate WORD Is there a program/scrip...

Is there any platform-independent way to access the clipboard?

I have a small side project I want to write and have yet to decide on a language. Ultimately, I want a way to access and/or modify the clipboard in a platform-independent way. I'd like to learn a new language to do this, preferably something that: I'll learn a lot from. Will look good on my resume. ...and I'm leaning towards a fu...

How can I fix "Cannot open clipboard: Access Denied" errors?

I am using the following code to copy text to the clipboard: Clipboard.Open; try Clipboard.AsText := GenerateClipboardText; finally Clipboard.Close; end; Seemingly at random I get "Cannot open clipboard: Access Denied" errors. I'm guessing that these errors are caused by other application locking the clipboard, but I n...

Does iPhone have a clipboard API?

Does iPhone have a clipboard API? It seems one can call an API function to set text to the pasteboard which will be accessible by other apps., but can someone verify that this is correct? Thanks. ...