Questions tagged [clipboarddata]

Questions dealing with editing and using clipboard data.

Questions dealing with editing and using clipboard data. eg: Storing a string in the Windows clipboard.

165 questions
0
votes
1 answer

Parse enter on clipboard data

Can anybody tell me how to find if clipboard data contains enter (next line) and tab or not I have code for paste event as: document.addEventListener('paste',function(event){ if(event.clipboardData.types.indexOf('text/plain') > -1){ var…
Madan
  • 380
  • 1
  • 4
  • 11
0
votes
0 answers

clipboardData: Prevent Chrome to create new DIV,P

I'm pasting HTML to contentEditable div, In DIV there is p tag which contains default text as a placeholder. When I am pasting multi-line text, Google chrome creates

tags for each new line text. rotate_div.addEventListener("paste", function(e)…

shyammakwana.me
  • 5,562
  • 2
  • 29
  • 50
0
votes
0 answers

Copy multiple images to clipboard in Python

Using Python 3.4.0 in Windows 7, I've managed to copy a single image to clipboard thanks to this question. Now I want to copy multiple images at the same time. I don't understand much of what is happening in this code, so I'm unable to modify…
0
votes
0 answers

Paste content from the clipboard automatically when I open the TinyMCE editor

I am trying to paste the content from the clipboard automatically when I open the tinyMce Editor. I have already used- var a=window.clipboardData.getData("Text"); tinymce.get("id1").setContent(a); but unable to get the content on the editor, but…
Aniket
  • 3
  • 2
0
votes
1 answer

C++ (VC) Text output breaks lines with 0d 0d 0a instead of 0d 0a - how to fix?

EDIT: The solution to this problem was supplied by Ulrich Eckhardt in the comments below. Also: this problem had an entirely different cause and solution from the ones described in possible duplicates. Again, see Ulrich Eckhardt's comment for…
emendelson
  • 416
  • 5
  • 18
0
votes
1 answer

windows Clipboard to webpage textbox control

I have a mvc project where i have created some controls with HTML5 and bind the same to the respective view. There are lots of textbox controls inside that webpage .When i am doing some testing it is a waste of time to give inputs for all text box…
Viku
  • 2,845
  • 4
  • 35
  • 63
0
votes
2 answers

Get/Set Cliboard Text using Win API

I like to do the same thing using the windows API. Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click TextBox1.Text = System.Windows.Forms.Clipboard.GetText End Sub Private Sub Button2_Click(sender…
nexno
  • 429
  • 8
  • 26
0
votes
3 answers

How not to save passwords and sensitive data in Quicksilver/Alfred clipboard history plugin?

I'm using the Quicksilver clipboard history plugin to record the last 15 items. The problem is i sometimes need to copy/paste passwords or other sensitive data (from 1Password for example) and i was wondering if there was a way to not log this type…
AlestoBG
  • 11
  • 3
0
votes
2 answers

How can I properly format text to paste it from C# to Excel?

I have button in my c# application that should format and copy data from few sources. And i have a problem to paste my text from clipboard to excel. In excel all text like 1.12.1 is transfromed to 01.12.2001 datetime format! And i dont want to do…
Ievgen
  • 4,261
  • 7
  • 75
  • 124
0
votes
2 answers

load or save bitmap handle win32 in C

Ultimately I want to save the Image from the clipboard to an img file(.bmp, JPEG whatever). That's a long road, so I just want to load the image into the window but I don't seem to have any succes with GetClipboardData(). It always returns NULL.…
kundrata
  • 651
  • 3
  • 12
  • 24
0
votes
1 answer

Can a BackgroundWorker join (link to, access, invoke, become) the STAThread

I'm not super familiar with what exactly the STAThread does (is), so I'm not sure if my question is even properly stated. I have a process running in a BackgroundWorker thread that copies the contents of an Excel range to the clipboard…
sergeidave
  • 662
  • 4
  • 11
  • 23
-1
votes
2 answers

Wordpress How to COPY TEXT to CLIPBOARD

I need a copy-to-text button using a font awesome icon in a div in wordpress. I do not want any alerts. Just a simple click.
text
I am a novice so please tell me…
Erik
  • 5,701
  • 27
  • 70
  • 119
-1
votes
1 answer

Copy text to other app via clipboard

I want to copy these text and past into other apps like WhatsApp twitter etc to the clipboard by clicking this (copy tag button) how can I do here is my activity
-2
votes
1 answer

Copy files from web to desktop and reverse

I am building a web based file manager and was wondering, if it was possible to copy files from the web to the desktop and reverse. Just like I can copy [CTRL] + [C] a file on my desktop and then paste [CTRL] + [V] it somewhere else. I am thinking…
Mark Topper
  • 652
  • 1
  • 8
  • 23
-3
votes
1 answer

Hwid to clipboard

So this is what i am trying todo i am trying to copy serial number to clipboard but it doesnt work is there anything i did wrong if yes then plz help me i would like to have this working becouse its something for a project of me that i am selling…
Arix
  • 29
  • 5
1 2 3
10
11