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
1
vote
2 answers

How to get the size of the contents of MSForms.DataObject in MS Access VBA

I have a BMP image copied to the clipboard that I will paste into a form object frame control in MS Access (2016). What I need to know is the memory size that the image takes up on the clipboard (although it would be alright if there was a way to…
DRC
  • 589
  • 2
  • 8
  • 30
1
vote
1 answer

Copy to ClipBoard and paste Clipboard data to whatsapp message Textbox

I am trying to paste text, image and pdf documents to clipboard first and then to whatsapp textbox control. 1) For Text. Clipboard.SetText(message); Ctrl + v pastes the text into the whatsapp textbox. 2) For Image var imagePath =…
sham
  • 691
  • 8
  • 28
1
vote
0 answers

Copy to the Clipboard in Lightning Component

I'm creating Lightning Component that displays Classic version of the Current URL record page with a button that onclick copy to the clipboard that URL. Just a simple functionality that saves time for Lightning Users, when they need to send a URL…
1
vote
0 answers

How to copy a row data to clipboard from jquery datatable?

Actually I want to sort out my copy data. The copy to clipboard is copying all the data from selected row. but I want the specific columns data. So, Please help me to copy data by skipping some columns. This is the table and when the I select the…
M.i. Sujon
  • 9
  • 2
  • 6
1
vote
1 answer

JavaScript filter non-digits on paste event in Firefox

I have an and I want to prevent any non-numeric characters from being entered. For preventing regular keypresses, this can be done with const validKeys = new Set([ …
dx_over_dt
  • 13,240
  • 17
  • 54
  • 102
1
vote
0 answers

Clipboard API usage in Chrome not working as expected

I have a very strange behavior when I try to react on the paste event in Chrome in order to let the user paste multiple files from the file system into my web frontend. This is the code of the function I register to the paste event: let…
Schnodderbalken
  • 3,257
  • 4
  • 34
  • 60
1
vote
0 answers

Manipulate html 's value retaining undo capabilities

If I have a simple and never mess with its value property, I can undo (and redo) my actions at will [I mean, keyboard typing and clipboard cut and paste]. But once some event sets its value the undo stack is gone. I understand…
rslemos
  • 2,454
  • 22
  • 32
1
vote
1 answer

How to extract clipboard contents with xsel after clicking on element with Selenium

The following code uses Selenium and xsel and is expected to extract clipboard contents after driver copied to clipboard some content from a webpage: import unittest from selenium import webdriver from selenium.webdriver.support.wait import…
rok
  • 9,403
  • 17
  • 70
  • 126
1
vote
1 answer

Capture Paste Content in Ember 2.6

I have an Ember App (Ember 2.6) and I am trying to capture paste data before it is pasted into a input component. I have tried registering a custom event in my Ember App following the…
1
vote
1 answer

How to add spaces to HTML clipboard data so that WinWord inserts them on pasting?

In my application you can copy data to the clipboard. The data is copied to the clipboard in HTML format so that format information is preserved when pasting to other applications that can handle HTML data from the clipboard (e.g. WinWord). Example…
Krisztián Balla
  • 19,223
  • 13
  • 68
  • 84
1
vote
1 answer

Enable clipboard contents /files to Mac from Windows

I am trying to setup a Mac mini machine and connected using VNC client. But I am unable to copy any text contents or file into the Mac mini from my windows machine. I checked options in VNC viewer and could find only "ServerCutText" and…
VVP
  • 766
  • 4
  • 14
  • 39
1
vote
0 answers

Clipboard copy-paste in JavaScript doesn't work in Edge browser?

I am aware of the fact that Clipboard API is currently not supported by edge browser. I am using document.execCommand() to do copy & paste. The copy functionality works fine. But the paste doesn't work. I am using a custom context menu to achieve…
1
vote
1 answer

How to copy/paste 'int' content from webpage

I want to copy/paste an int from a website, I know it's a very good way, even a non-proper one but i didn't find better With Java.awt.Robot I go at the good position on page, make 2 clics to select the content, and then make a ctrl+C to add it to…
azro
  • 53,056
  • 7
  • 34
  • 70
1
vote
1 answer

Cleaning quotes from clipboard data in VBA

I have a macro that will paste into a selected cell multi-lined data from the clipboard. It will insert new rows for each line. Column A and Row1 contains headers and it will fill it out for any inserted rows. Sheet1 Header0 Header Header …
Esuriency
  • 107
  • 1
  • 3
  • 12
1
vote
0 answers

AvalonEdit copy/paste as text

I'm using AvalonEdit as editor and output window for IronPython in a wpf application. At runtime I often have to copy/paste data from the output window (AvalonEdit) to Excel for further processing. Unfortunately AvalonEdit copies the data as…
luni64
  • 321
  • 2
  • 8