clipboard

Cannot obtain value of local or argument 'hwndSource' as it is not available at this instruction pointer

Hey Guys I'm playing around with Interops and I thought: "Hey let's code something that accesses the clipboard ..." so I googled and found some articles (yeah I'm doing it with WPF - .Net 3.5). However the following method generates an error (as seen in the title) and throws a stackoverflow. private void Window_SourceInitialized(objec...

how do i access clipboard

How do I access the clipboard on HTC hero? ...

How to retrieve Unicode CSV Clipboard data MS Windows XP?

I am writing a test app for a larger project and cant seem to retrieve Unicode CSV data from the Windows Clipboard, I am successful at retrieving CF_UNICODETEXT, using the built in GetClipboardData api call, however when I place Unicode CSV on the clipboard in MSExcel and try to retrieve with CSV format, I get bad data. Here is some code...

Can copy HTML formatted text from clipboard in silverlight ?

I need to access clipboard in silverlight. in winform apllication: textBox1.Text = Clipboard.GetText(TextDataFormat.Html); but, in silverlight I can only get text textBlock1.Text = Clipboard.GetText(); How can I get the html format of the clipboard ? ...

Binary (image) data clipboard (OS X)

When I copy things to the clipboard, I can dump them into my console window or redirect to a file using pbpaste > out.txt But if I right click and image and copy in a browser, then attempt pbpaste > out.jpg Nothing is outputted. Where does OS X store the image data in the clipboard? Is there some way to access it from the commandli...

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 stuff endfunction Of course the "+p is just a comment in the .vim file. How can I make this work? ...

How do I safely and correctly create a backup of the Windows clipboard?

Hi all, I'm trying to create a backup of the Windows clipboard. Basically what I'm doing is using EnumClipboardFormats() to get all of the formats that exist on the clipboard currently, and then for each format, I'm calling GetClipboardData(format). Part of backing up the data obviously involves duplicating it. I do that by calling Glo...

set GLOBAL clipboard text in windows, native c++

I have an ASCII string (A null terminated char array) in a console app. all I want to do is make it so my app will put this string into the "global clipboard" so that after running it, I can ctrl+v in any standard app (in this case, visual studio) and my string will be pasted! how do I do this? I have done: void SetClipboardText(char...

Why does this object always come back from the clipboard as null

I am working with the clipboard in .net with the following code List<object> templateList = new List<object>(); Clipboard.Clear(); Clipboard.SetDataObject(templateList); IDataObject dataObject = Clipboard.GetDataObject(); var x = (List<object>)dataObject.GetData(typeof(List<object>)); For the above code x is an empty List...

why does my pygtk application crash when copying text on a clipboard?

Hi all, I'm writing a python application using pygtk. I have a main thread who occasionally calls another thread that is supposed to build a string and then copy it on the clipboard before dying. My "slave" thread looks pretty much like this: class Slave(threading.Thread): def run(self): s = build_string() c = gtk.Cl...

Visual Studio 2010 powertools HTML clipboard support

I installed http://weblogs.asp.net/scottgu/archive/2010/06/09/visual-studio-2010-productivity-power-tool-extensions.aspx but I can not find where I can make use of the HTML clipboard support. Anyone knows where to find it? I already searched in the kebyoard settings after Copy but that didn't provide me something useful. Anyone? ...

how to build custom focusable object in HTML/JavaScript

I want to build a custom object in HTML which is focusable. How can I do that in general? More specific about why I want that: I need some kind of editor component with much more power and control over it. I.e. no single character should be possible to be typed in directly. It is like a big tree of objects (imagine an AST or so) and you...

ClipBoard Monitor C#

Possible Duplicate: Clipboard event C# Hi, Can I monitor the clipboard continuously for any copy operations? I'm using C# Thanks ...

getting HTML source or rich text from the X clipboard

How can rich text or HTML source code be obtained from the X clipboard? For example, if you copy some text from a web browser and paste it into kompozer, it pastes as HTML, with links etc. preserved. However, xclip -o for the same selection just outputs plain text, reformatted in a way similar to that of elinks -dump. I'd like to pull ...

Get the print screen image from the clipboard

Is there a way to Get the print screen image from the keyboard. Say for example I had a image hosting site and wanted a feature where users could paste in an image and simply host it that way. would that be possible? Sorry this is such a vague question. EDIT: Would it be possible with some sort of third party plugin? Are there any exi...

Data loss during WPF clipboard operations

I am working with a FlowDocument in a WPF RichTextBox. Some of the flow document elements are created using subclasses of the System.Windows.Documents framework classes and all of the elements use the Tag property to store additional data. If I use a XamlWriter to serialize a document tree, everything is correctly reflected in the resul...

How can I retrieve a DataGridView from the clipboard? (It ends up being Null in clipboard).

I am unable to read a pasted datagridviewrow object from the clipboard. All I want to do is, when a user has the entire row selected and copied, I would paste that row into the clipboard as a DataObject. That works just fine but when I attempt to read that DataObject (after the user clicks Paste) the DataGridViewRow that's saved in the c...

How to store a Collection of Objects in the Clipboard?

I have a class Slide, of which I want to place several instances in the clipboard. It works perfectly fine for a single instance. But when I try to, for example, put a List<Slide> in the clipboard, the SetDataObject call will silently fail. Internally, a COMException will be thrown and is swallowed. This is because List does not impleme...

Debugging Serialization Issues in C#

I recently implemented a Copy&Paste feature into an application I am working on. This works pretty much as intended. I create a new item in my user interface and can copy and paste it as often as I want without any issues. But when I copy&paste an item that was produced by a previous copy&paste action, I get a SerializationException. It ...

pasting text to xterm in GNOME using gtk clipboard

I am developing a GTK based application which has to support clipboard. For that I am exporting selection data using gtk_clipboard_set_with_data with the target formats: UTF8_STRING, STRING, TEXT, COMPOUND_TEXT, text/plain, text/plain;charset=utf-8, text/rtf, text/html and text/url. Using this I am able to copy-paste text from my aplicat...