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
1 answer

Setting clipboard options from the vim console

I'm trying to use vim on a remote Ubuntu server and I'm noticing that the start up for vim is too slow unless I use the -X flag or have set clipboard=exclude:.* in my .vimrc. When I use either options, vim starts up fast but the problem is I can't…
Ray
  • 243
  • 2
  • 10
2
votes
1 answer

Bind ClipboardContentBinding to DisplayMemberPath

I have a DataGridComboBoxColumn like this:
ConditionRacer
  • 4,418
  • 6
  • 45
  • 67
2
votes
1 answer

Cleaning up private clipboard formats

When an application puts data on the clipboard in a private format (CF_PRIVATEFIRST to CF_PRIVATELAST) then it has to free it in response to WM_DESTROYCLIPBOARD, because for these formats the system won't do it automatically. It ought logically to…
Ian Goldby
  • 5,609
  • 1
  • 45
  • 81
2
votes
1 answer

Intercept pasting to a (rich) edit control

I want to override the default behavior when text is pasted into a rich edit control. Specifically, I want to paste plain-text, not formatted rich-text. I guess that boils down to getting the data as a different clipboard format, but I don't know…
Mr. Boy
  • 60,845
  • 93
  • 320
  • 589
2
votes
1 answer

Copy+Paste DataGridViewSelectedCellCollection to/from Clipboard

Assume that I have a DataGridView which is populated by a number of different strings (different length, numbers and plain text) in Cells. Want I want to do is to copy and paste these strings, which could be any selection of Cells. My approach to…
fiscblog
  • 694
  • 1
  • 12
  • 27
2
votes
1 answer

jQuery Clipboard Copy

I need Clipboard Copy functionality, even i m taking help from http://plugins.jquery.com/project/copy link but it is not working fine.
  • Pankaj
    • 4,419
    • 16
    • 50
    • 72
  • 2
    votes
    1 answer

    service to clear clipboard in android to prevent copy paste

    I want to prevent copy pasting of my mp4 and pdf files. So I want to clear clipboard containing my video to paste before it's pasted somewhere. When clipboard takes my file address for pasting then I'd like to clear clipboard to prevent…
    2
    votes
    3 answers

    Tool to save a larger clipboard

    Are there any tools to have a more robust clipboard type feature in windows? I am using vs.net 2008 (if it has it built-in and I don't know about it?) I used to have this tool where I created lots of items in my clipboard that I could access using…
    Anonymous Bug
    2
    votes
    2 answers

    how can I copy a string to the windows clipboard? python 3

    If I have a variable var = 'this is a variable' how can I copy this string to the windows clipboard so I can simply Ctrl+v and it's transferred elsewhere? I don't want to use anything that isn't that isn't built in, I hope it's possible. thanks!
    Toby Smith
    • 1,505
    • 2
    • 15
    • 24
    2
    votes
    2 answers

    Check if clipboard has data, paste into textbox

    iam trying to paste the data gathered from the clipboard in a textbox (C#) In this case i copy something into the clipboard Clipboard.SetText("Hello, clipboard"); How can i do that at the exact moment that clipboard has something,(or when the…
    WickedJenn
    • 43
    • 1
    • 7
    2
    votes
    3 answers

    paste HTML into org-mode as org-mode markup?

    Is there a tool that will allow me to copy content from a web site (images, headings, links, and paragraph text) and paste that content into org-mode in proper org-mode markup (e.g. with the links and image URLs denoted in org-mode syntax) without…
    incandescentman
    • 6,168
    • 3
    • 46
    • 86
    2
    votes
    3 answers

    copy text in clipboard

    i need the selected text in my textBox to be copied in my clipboard by my MenuItemCopy() methode and then be able to paste it by MenuItemPaste().need some help with it. here is my codes: private void goToToolStripMenuItem_Click(object sender,…
    Melody Hajian
    • 275
    • 1
    • 3
    • 12
    2
    votes
    2 answers

    Remove spaces from a string of text in clipboard

    This is maybe a weird request but hear me out: I have a huge database at my shop containing product codes, like 87 445 G 6 which I need to check for availability on a supplier's website. The problem is, the supplier's website consists of a web form…
    Roberto C
    • 301
    • 5
    • 16
    2
    votes
    4 answers

    Android - Copy image to clipboard, anyone got this working?

    I am trying to copy a image file from my apk to the clipboard. Here is how I am approaching it (roughly, i'm using a content provider locally which is out of the scope of the question. ClipboardManager mClipboard = (ClipboardManager)…
    PersuitOfPerfection
    • 1,009
    • 1
    • 15
    • 28
    2
    votes
    2 answers

    Println needs a message, help decrypt log cat

    java.lang.NullPointerException: println needs a message at android.util.Log.println_native(Native Method) at android.util.Log.e(Log.java:230) at android.sec.clipboard.data.ClipboardDataMgr.addData(ClipboardDataMgr.java:166) at…
    Broak
    • 4,161
    • 4
    • 31
    • 54