Questions tagged [clipboard]

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.

It is most commonly a part of a GUI environment and is usually implemented as an anonymous, temporary block of memory that can be accessed from most or all programs within the environment via defined programming interfaces. A typical application accesses clipboard functionality by mapping user input (keybindings, menu selections, etc.) to these interfaces.

The semantics of the clipboard facility varies from one operating environment to another, and can also vary between versions of the same system. They can sometimes be changed programmatically or by user preference. This can lead to user frustration when switching between environments with different clipboard semantics particularly as copy and paste operations often become embedded in the user's muscle memory.

Most environments support a single clipboard transaction. Each cut or copy overwrites the previous contents. Normally, paste operations copy the contents, leaving the contents available in the clipboard for further pasting operations.

http://en.wikipedia.org/wiki/Clipboard_(software)

4050 questions
2
votes
0 answers

Convert image from clipboard to base64 encoded data with JavaScript

I want to be able to take a screenshot and then just simply paste it to the textarea field which would then turn the image into base64 encoded string. Then I could easily put it inside img elements src attribute. Reason I want it this way is…
Pehmolelu
  • 3,534
  • 2
  • 26
  • 31
2
votes
1 answer

Android Capture URL from the clipboard

I'm currently working on project, Android Internet Download Manager. In order to download the file, the user has to copy the URL that he wants to download. What I need is the code to acquire the copied URL from the clipboard, so that I can download…
don
  • 597
  • 2
  • 8
  • 28
2
votes
2 answers

Copy numeric codes to clipboard and paste to Excel without having them formatted as numbers

I have a .NET Windows Forms applications and I need to copy a list of 8-digit numeric codes into the clipboard to be pasted to Excel sheet. string tabbedText = string.Join("\n", codesArray); Clipboard.SetText(tabbedText); The problem is that…
inative
  • 23
  • 5
2
votes
0 answers

How can I completely disable Clipboard History/Cycling in Visual Studio 2010?

I have clipboard problems every day, just from doing simple cut, copy and paste operations. The clipboard in Visual Studio fails half the time for me, and it drives me insane. Is there any way to completely turn off the Clipboard History/Cycling…
Hairgami_Master
  • 5,429
  • 10
  • 45
  • 66
2
votes
1 answer

ASP.NET MVC Paste to clipboard

I have a ASP.NET MVC 4 app. I want to copy a text(from PDF) CTRL+C and paste it as parameter in a method from a controller. My webgrid has column with an ActionLink grid.Column(" ", " ", format: @
Misi
  • 748
  • 5
  • 21
  • 46
2
votes
1 answer

Clipboard.Flush() always fails in wxpython app

In the EVT_CLOSE handler of a wxpython app, I'm trying to flush the clipboard to leave the copied text available to other applications. However, the Flush() method always returns false. Example: cp = wx.Clipboard.Get() print…
Michael Clerx
  • 2,928
  • 2
  • 33
  • 47
2
votes
2 answers

difficulty with zeroClipboard

I am using zeroClipboard but I don't manage to have it working. Here is my HTML markup:
Copy Poem
fkoessler
  • 6,932
  • 11
  • 60
  • 92
2
votes
2 answers

How to take screenshot of Form from within app?

What code would effectively take a screenshot of a Form and put a copy of this image on to the clipboard? So I would like something like: Form.CopyScreenshotToClipboard
CJ7
  • 22,579
  • 65
  • 193
  • 321
2
votes
0 answers

Can a Titanium iOS module access files in the Titanium app?

I have run into a few dead ends trying to get an animated gif onto the clipboard in iOS using Titanium, so that I can then have the user paste it into an MMS. I am considering trying my hand at creating a simple Titanium Module to get the image onto…
2
votes
1 answer

XCode 4.3 Text from clipboard automatically in TextView by entering

I don't find some information about the clipboard on the iPhone simulator and iPhone devices... I have a textView and when I entered the textView I want see the text which is in clipboard. I hope that somebody can help me. Best Regards John
Johannes Knust
  • 891
  • 1
  • 11
  • 18
2
votes
2 answers

Parse Tab Separated Values in VBA

I am trying to take clipboard data copied from excel (i.e. tab separated text) and parse it into a Collection of Dictionaries. The idea is that each row will be represented by a Dictionary which maps from headers to cell values. The first row in the…
jwoolard
  • 6,024
  • 9
  • 37
  • 37
2
votes
2 answers

gvim auto copy selected text to system clipboard (to share it with apps )

I wonder, how i can enable auto copy of selected text into '+' register in Ubuntu (to share clipboard between apps)? On win XP, i have set guioptions+=a and its works perfectly, but not in Ubuntu 11.10. Also, i tried set…
Sergey Vakulenko
  • 1,655
  • 18
  • 23
2
votes
0 answers

Caused by EditControl or Clipboard?

OK, so i am writing this program in C++ that is supposed to append the clipboard text into the edit control inside the Auto-Clipboard tab. I have setup the program so that it supports unicode text. The program appends the text correctly when i copy…
2
votes
2 answers

Realtime BMP to JPG conversion in Delphi 7 using Paradox

Researching here and at Code News Fast, I've seen nothing on point to my problem. I have an app where a customer picture (a JvDBImage) is acquired through the clipboard from a third-party picture-taking program when the user clicks a button in my…
GM Mugford
  • 211
  • 3
  • 8
2
votes
1 answer

Java OutOfMemory Exception When Clipboard

When I try to set some text content to our beloved window's clipboard using the below snippet, it works fine upto some 10-15MB. But beyond that size, it throws an error message shown at the end. How can we set 30+ MB of utf text to…
Ranjan Sarma
  • 1,565
  • 5
  • 22
  • 36
1 2 3
99
100