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.
1
vote
2answers
154 views
JavaFX Dragboard setContent interfering with setOnMouseDragged?
I would like to use drag and drop in JavaFX and have a feature where you can visually see the item being dragged. I've implemented what I thought would be a working solution, but there seems to be an ...
0
votes
1answer
35 views
Clipboard copy from outlook always has black background set when retrieved as image from Java clipboard object
Here are the application steps
copy some richtext from a html email message or from a website(a combination of text + image)
In your java code retrieve the content copied from the clipboard object ...
0
votes
0answers
19 views
Update clipboard from widget?
Say I click a widget and I want some text added to clipboard. Is this possible? Currently I do this from inside the app itself which works fine:
ClipboardManager clipboard = (ClipboardManager) ...
1
vote
0answers
48 views
How to copy EMF images from .NET Windows.Forms into Visio?
I am working on a diagram editor written in .NET 2.0 using Windows.Forms.
Diagrams must be copied into Microsoft Word and Visio as vector graphics.
The editor has a Save as EMF function that works: ...
1
vote
3answers
66 views
Copy every line of text on osx
The deal is this:
I use http://www.clipmenu.com/ ClipMenu to have 20 states of the clipboard, because i need to copy each line of some txt file separated. So i open the txt file, and i go through ...
1
vote
2answers
129 views
How to set HTML Unicode text to clipboard in VC++?
I am a newbie to C++. I want to get the content of the clipboard, which might contain Unicode chars, append a div tag with some content formatted in HTML and set that back to clipboard.
I have ...
0
votes
0answers
35 views
How to retrieve Source Details of copied content from clipboard
I am trying to retrieve meta data from the clipboard to keep track of the copy pasted contents using Javascript. I have tried using clipboardData object for getting the data but other than the copied ...
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 ...
1
vote
0answers
46 views
Copying selected text to java swing application as image
I need to copy selected text from outlook (2010) to a java swing application. Instead of showing content on that image, it creates a black image.
final BufferedImage image = (BufferedImage) ...
0
votes
0answers
54 views
SlickEdit 17---Why auto copy
 I'm now puzzled by the behavior of SE about the auto-copy feature.
First,when I double click on any word,the word will be copied to the clipboard,however I ...
1
vote
0answers
85 views
How to call Java from C++ and how to edit clipboard
I have been trying to look for ways to run a .jar file from C++. I am doing this because I do not yet know how to add text to the Clipboard in Windows.
As an alternative, I was going to have the C++ ...
5
votes
3answers
50 views
BackgroundWorker and ClipBoard
I'm going crazy with a simple code [WPF C #] in which I use a BackgroundWorker to automate the basic operations. Should I add a content to the clipboard.
After executing this code in the method of ...
0
votes
1answer
115 views
GWT - Copy & Paste ZeroClipboard
I read this question.
I need to do a clipboard system in my gwt web application.
ZeroClipboard there is no longer on GoogleCode, and i have downloaded it from GitHub, but this guide doesn't work.
Any ...
-1
votes
1answer
21 views
Clipboard data changes based on where you paste it [closed]
I have this question about how Spotify does this, so i made a little movie to explain what they do: http://screencast.com/t/UdW5KpoWM3
Kind Regards
Daniel Williams
0
votes
1answer
46 views
Copy textbox labels and content to clipboard
I want to create a web template form for a helpdesk. Basically users will have multiple textboxes to fill out and at the bottom would be a "Copy to Clipboard" button which would copy everything in a ...
1
vote
0answers
82 views
Copying Xaml RichTextBlock text with InlineUIContainers
I am working with some RichTextBlock objects that contain InlineUIContainer elements. I would like to be able to select and copy all of the text including the text contained in the InlineUIContainer.
...
0
votes
1answer
73 views
How to generate filename for an image that have been saved from clipboard? VisualBasic
I just started to to learn VB, and I wanted to create a program which saves my clipboard (ProntScreen).
I've succeed there, but I want to generate filename for those images, so I can take lot of them ...
0
votes
1answer
24 views
subscribe to clipboard event from within browser
Using the Win32 API it is possible to subscribe to clipboard events (Clipboard event C#).
Is it possible to do this from within an Active X Control or SilverLight within a web page?
My scenario is ...
0
votes
0answers
48 views
failure with getting clipboard content in java
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package prijsveranderaar;
import java.awt.AWTException;
import java.awt.Robot;
import ...
0
votes
1answer
244 views
C# Add excel text-formatted data to clipboard
In C# I need to copy data-grid rows to excel. Because some values in a row are doubles, "-Infinity" values are possible.
I've tried to copy the rows as DataFormats.UnicodeText or DataFormats.Text ...
0
votes
1answer
62 views
Get path of file from clipboard in OS X
I would like my app to get the full path of the file copied to the clipboard before.
I tried this:
NSPasteboard *p = [NSPasteboard generalPasteboard];
NSDictionary *options = [NSDictionary ...
0
votes
0answers
32 views
Error when setting tooltip text of selected listbox item to clipboard [duplicate]
I am trying to set tooltip text of selected listbox item on clipboard using this code:
[STAThread]
private void listBox1_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
...
1
vote
1answer
122 views
Copy to clipboard in C++? [duplicate]
I want to copy some string to clipboard in my C++ application.
How can I do that?
Also is it possible to copy the formatting as well?
Thank You
0
votes
2answers
234 views
Copy image from webbrowser to clipboard
I need to copy an image from a webbrowser control to my clipboard, because the image changes on every reload, and I tried to get the "src"-attribute and changing my picturebox.imagelocation to that, ...
0
votes
0answers
19 views
Gtk+ Error when Copy / Paste performed outside of application
I'm fairly new to Gtk. I'm working on a GUI application. Everything works great until I press Ctrl + C, Ctrl + V to copy/paste (in an outside application like excel). I am using Windows 8 64bit with a ...
0
votes
1answer
31 views
monitoring clipboard data
I want to write interrupt based console application or windows service for monitoring changed data in clipboard.So it would listen the clipboard data changed event. I have tried this using polling ...
0
votes
2answers
101 views
Clearing the Clipboard
I have the following console application in C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Timers;
using System.Windows.Forms;
namespace ...
2
votes
1answer
424 views
Copy-Paste image in Android using Clipboard Manager
I would like to copy image from my android application to the other android application using clipboard manager. I have researched a lot and read this tutorial but it doesn't cover the image copying ...
2
votes
1answer
267 views
C# Paste Clipboard content into Excel worksheet
As the title says, I try to actually paste what is in my Clipboard into an Excel.
I've following code:
Clipboard.SetText(html);
sheet.Range("A1").Value = Clipboard.GetText();
Actually, the ...
0
votes
0answers
68 views
concerning RTF, the clipboard and olMailItem
This is actually one big blur of questions which came to mind on a certain issue.
What I'm actually trying to do is to add entries to our sharepoint server through outlook. The issue that I'm stuck ...
1
vote
1answer
251 views
VBA PowerPoint Copy/Paste Inconsistencies
I have a VBA script written that searches through one PowerPoint (PRS_data) for a title match, and then copies the slide to a new PowerPoint (PRS). The slides on the source are simply a title and an ...
0
votes
0answers
23 views
Does System.Windows.Forms.Clipboard bug corrupt MS Office applications?
I have discovered a bug in System.Windows.Forms.Clipboard that corrupts MS Office applications--like Outlook, Access and Excel--when Clipboard.Clear() is called from Forms programs running on the Win ...
0
votes
2answers
105 views
Using tkinter to watch for clipboard,what's wrong with my code?
Some description about the code:
This is part of my program and I only put the related lines here
What I hope these code could do,is to watch for my clipboard.If I copy "http:xxx" to my clipboard,it ...
0
votes
2answers
320 views
asp.net copy table to clipboard
How can I copy the contents of an asp:Table to the clipboard so that it can be pasted in something like Excel?
I assume some sort of JavaScript is required?
For winforms it is easy enough using the ...
1
vote
0answers
29 views
Java - could not fetch clipboard data (midi) from CakeWalk
I am trying to get clipboard data (in windows) which were "copied" from CakeWalk midi editor. They are visible in clipboard viewers and could be pasted into other programs, but I could not get them in ...
0
votes
1answer
40 views
Visual Basic Clipboard Manipulation
To get straight to the point. I've got 3 buttons. Each button sends a lengthy message to the clipboard where I can then paste it in another window.
The messages are currently being stored in a string ...
0
votes
3answers
176 views
Access VBA image copy
I have a report generated by my access program. Each record in the report has a picture that is stored externally and referenced with a file path. I want to have a way for my users to copy the ...
0
votes
0answers
198 views
Copy / Paste Firefox (Works IE & Webkit)
Hellow
I went looking for some answers in case of copy / pasting data from anywhere into my contenteditable divs on my site, saw a lot of possible answers here. But still nothing the saved my ...
2
votes
2answers
282 views
How to format rows and columns in clipboard to paste like coming from Excel?
I'm working with a bunch of grids and those grids don't support copying rows and columns with a table layout like Excel does.
We need to be able to copy some rows and columns from the grid, and paste ...
0
votes
1answer
87 views
Clipboard.getText() is not refreshing fast enough C#
I am using this code:
int X = Cursor.Position.X;
int Y = Cursor.Position.Y;
DoMouseClick(X, Y);
SendKeys.Send("^a");
SendKeys.Send("^c");
clipText = Clipboard.GetText();
public void DoMouseClick(int ...
3
votes
2answers
57 views
put in and get out of clipboard in a loop without delays
I'm using the following code to copy text to Clipboard.
System.Windows.Forms.SendKeys.SendWait("^c");
Then I use
Clipboard.GetText()
to get the text from Clipboard. It works fine, but it looks ...
0
votes
1answer
74 views
Copy text with colors to clipboard
As the title says, how can I copy colored/styled text to the windows clipboard in Java?
The text is located in a JEditorPane like this:
JEditorPane je = new JEditorPane("text/html","a <font ...
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
1answer
39 views
If I want to make my computer be able to 'see' itself, would examining the clipboard after a call to PrtSc be a wise method?
I have become increasingly interested in artifical intelligence, but I am still learning the basics of the windows API. My current goal is to create a c++ process which calls SendInput to simulate ...
1
vote
0answers
84 views
How to reterive clipboard file pointer CF_HDROP
Whenever we copy any file to clipboard using cntrl+c it stores file pointer for cut,copy,paste operation .Is there any way by which we can retrieve that file pointer using c# . I tried this article ...
0
votes
1answer
62 views
How to close the clipboard ressource in C#?
Below is the code how I put a text string into the Windows Clipboard. I am looking for a command to close the clipboard resource immediately after so that it is not locked anymore by the app. Do you ...
0
votes
1answer
91 views
How to release / unlock / close clipboard so that other apps won't crash
This is how I set the clipboard content (text string) in my C# program:
Thread staThread3 = new Thread(
delegate()
{
try
{ new SetClipboardHelper(DataFormats.Text, s).Go();}
catch ...
1
vote
2answers
292 views
GetClipboardData (CF_UNICODETEXT);
Tell me please, why I get this issues:
if clipboard contains unicode chars (e.q. russian) I get only first selected word. First word before "space" character.
if clipboard not contains unicode chars ...
0
votes
1answer
670 views
vb6 and msflexgrid, how to count columns and rows in clipboard text
Back to vb6 and msflexgrid, there is a weakness in pasting text to this control. If the user wanted for example to paste a 2*3 array in msflexgrid he should select 2 rows and 3 columns to paste the ...
0
votes
0answers
33 views
Process and Clipboard Data
I want to know is their any way through which we can determine process id of process where clipboard data going to paste.
Thank you.


