The paste tag is to be used for issues relating to the paste portion of copy/paste operations.

learn more… | top users | synonyms

0
votes
1answer
25 views

Surround array on paste Sublime

I would like to set my sublime up to enter a mode where when I paste a set of data looking like this: 1234567 This is code 1 2345678 This is code 2 3456789 This is code 3 It will end up like this: ...
0
votes
1answer
38 views

R concatenate row labels with colnames

a<-as.factor(c('a','a','b','b','c','d')) b<-as.factor(c('a','b','c','c','d','a')) c<-as.factor(c('a','b','d','d','c','b')) x<-data.frame(a,b,c) a b c 1 a a a 2 a b b 3 b c d 4 b c d 5 c ...
0
votes
1answer
21 views

How to copy both .h & .m files in Xcode, and other files?

Sometimes I have to make another class very similar with a existed one, I know it's against OO design but I have to violate it. But when I select the file and press command+c and +v, nothing happened ...
0
votes
0answers
16 views

Macro to AutoFilter and paste results to different parts of a different absolute worksheet

I've done the super-long version, so here's the super short. This is how I'd like it to run: Any cells in B3:B26 that = "1G", then copy that entire row (which goes A:Q), and paste it into the A2 of ...
0
votes
1answer
36 views

C# How do I handle a argumentNullException when setting the clipboard?

private static IntPtr HookCallback( int nCode, IntPtr wParam, IntPtr lParam) { if (nCode >= 0 && wParam == (IntPtr)WM_KEYDOWN) { int vkCode = ...
0
votes
0answers
14 views

javascript modify document without getting previous state stored to undo buffer

I wonder, Is it possible to modify a, let say, iframe inner document without having its previous state saved on undo buffer. I have a little WYSIWIG editor, which removes unsupported formatting from ...
0
votes
1answer
25 views

Macro to use multiple IF statements to copy and paste to dif places of a dif worksheet

This particular macro, it's hard to accomplish what I want by taking different parts of different codes around the net, so I'm here for help! Basically, I teach swimming and I want to track progress ...
0
votes
2answers
32 views

How to use paste function in lattice while having new lines and substitute

Folks, I have the following example where I use lattice for a scatterplot of (random) data. What I am trying to do is paste three variables, in a new line each. The problem is found with the third ...
0
votes
1answer
22 views

problems with paste event and iframe on internet explorer 7

I've got a WYSIWYG editor, based on JqueryRTE (code.google.com/p/lwrte), which uses iframe as a main object and enables a few means of formatting. Still I need to sanitize pasted text, because users ...
0
votes
1answer
25 views

Dispatch Paste Event in AS3

This is my AS3 code for a textbox with an instance name of myTextBox placed on stage -: import flash.display.*; import flash.events.*; myTextBox.text = 'Hello India'; ...
0
votes
1answer
26 views

Paste entire column into QTableView from Excel

I am having an issue pasting into a QTableView from Excel when the user has copied by selecting an entire column in Excel, essentially putting every single row in the selected column, for the entire ...
0
votes
0answers
17 views

android paste from a background service

Is it possible to paste from a background service in android? I would like to add a feature to my app that if you shake the app it will paste wherever the cursor is located. Is this something that is ...
0
votes
2answers
13 views

My script for Double clicking, Pasting, Enter then Looping isn't working

How do I make a script that in order Double Left Clicks Then Pastes from Clipboard (Like CTRL+V) Then Presses Enter Then Loops over and over. I tried but it doesn't work. +LButton:: send {LButton ...
0
votes
0answers
12 views

WPF: How to programatically paste (and drag&drop) files from zip archive to my program

If you CTRL+C files from zip archive that is opened in Windows Explorer and then paste them to some other folder then they will be copied. I am trying to accomplish the same for my application when ...
0
votes
1answer
32 views

CKEditor 500 errors when posting content

I've been using CKEditor successfully in Drupal for some time now. Currently using v3.6.6.1. For some reason, we recently started experiencing 500 errors after attempting to paste the content of an ...
0
votes
0answers
17 views

Make paste button for browser, using c#

View screenshot of application How can I paste text from details text box to browser text box as shown. add button is to add text from description text box to clipboard. Now it should paste text ...
0
votes
0answers
29 views

Copy Paste Reference Changing

I have been having troubles with a macro that copies formulas from a single row, to all rows depending on the length of the data table. This is a snippet of a larger macro (see below). The issue I ...
-1
votes
1answer
38 views

Randomly Select A File in folder & Move To Another Folder

I need to select a file from a directory and move to another directory. In order to do that I need to select a file randomly. I need to select a random file (any ext can be) but I dont know how to ...
0
votes
1answer
44 views

Pasting multiple nodes in jsTree

The documentation for the CRRM plugin for jsTree states that the copy() method "Copies a node (prepares it for pasting)" and takes a parameter that "can be a DOM node, jQuery node or selector pointing ...
0
votes
1answer
81 views

Microsoft Word Macro to modify and paste clipboard text

My goal is to: Copy text in a PDF to the clipboard In a single move (using a macro, I suppose), paste the text to MS word while Replacing all line breaks with a space Matching the destination's ...
1
vote
2answers
37 views

Put (paste) character-wise yanked text over block-wise visual selection

Is there a way to easily achieve the above? For e.g., given red apple red banana red cucumber The fruits are blue. Is there a way for me to yank the word "blue", then visually-select the column ...
0
votes
2answers
66 views

How do I paste to console Vim from the system clipboard?

I can copy text from Vim to other Mac applications with "*y. But when I try to paste into Vim, from TextEdit for example, I cannot paste text with "*p. Is there some setting that I missed?
0
votes
1answer
50 views

Paste the contents of a Bitmap into a PictureBox

I'm currently writing a little paint application where the user is able to draw on a Panel. I am working on the select tool and want to be able to select a certain area of the Panel, and then paste ...
0
votes
0answers
58 views

Trying to Paste ONLY values in VB program

I have a simple program and I'm hung up on what I believe to be an easy issue to resolve. But I cannot get it. I want to turn the paste function in my code below to a "paste special" function ...
1
vote
2answers
61 views

os.system complains about round brackets

I am trying to include this line in a python script. !#/bin/bash/env python import os os.system("paste <(awk '!/^($|[:space:]*#)/{print $0}' file1) <(awk '!/^($|[:space:]*#)/{print $0} file2) ...
1
vote
1answer
79 views

Handle a paste event in c#

I've created a static class numeric Textbox but i wan't to control what the users paste in te textbox. For handling paste Event i use textchanged event: static public void ...
2
votes
1answer
141 views

Capture CTRL+V or paste in a textbox in .NET

VB.NET 2010 - I have a RichTextbox in which the user can manually enter data or copy/paste from another source. After the data is complete he hits go and a few key words are highlighted. My issue is ...
0
votes
0answers
21 views

Retrieve data contained in GUI elements and external program

I am working for a company that needs to upgrade their whole IT system. Currently they are using a program that runs on Windows as a client. The main objective is to retrieve the information from that ...
0
votes
0answers
25 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 ...
2
votes
1answer
122 views

Runtime error 1004 “Method of Range Class Failed”

I keep running into an error (which happens with no pattern or percieved reason). The error occurs when I try to do a pastespecial (formulas or values). I am curious if there is an alternative way ...
0
votes
1answer
29 views

Software to copy some strings of text and paste them in succession

I'd like to know if there is such a software (on either windows or linux) that allows to copy several strings of text but then paste them one after another. Example: I copy string A which is '000' ...
0
votes
2answers
36 views

Excel Macro: Removing the titles and only copying the items

So I know how to copy the values and paste it to another sheet and also removing the blank cells but how do you remove the titles (the ID, ITEM, ITEM NUMBER) so that when I paste the items on to ...
0
votes
2answers
64 views

Check box function to paste value if check

I am trying to make it so that if check box 82 is not checked then cell J39 is left blank but if it is checked the value is 3.8. On the line "Sheet.Range("J39").PasteSpecial Paste = "3.8"" I am ...
0
votes
0answers
6 views

Paste text into a running X application

Situation: I have a running application in a x-window system (for example: Chrome on Ubuntu) and want to paste something with a script invoked through a keyboard shortcut. The keyboard shortcut ...
0
votes
4answers
78 views

Concatenating rows in the form “A1”, “B2”, “C3”

I have a dataframe > df letters numbers 1 A 1 2 B 2 3 C 3 4 D 4 5 E 5 and wanted to have the following result after concatenating ...
0
votes
1answer
63 views

AutoHotKey: Can you assign different copies to different keys?

Is it possible to assign different copies to the clipboard to different keys using AutoHotKey? For instance, I want to copy one number, assign it to the key F11 so when i press F11, it prints that ...
0
votes
2answers
61 views

Pasting array values and pasting normally

I've been having issues with this VBA program today, it has been working great for a couple of days and now its kicking up a stink. I hav.nt changed anything that I am aware of to cause this problem ...
3
votes
1answer
90 views

NSTextField: exposing its Copy and Paste methods

I am trying to access the copy, cut, and paste methods of a NSTextField instance in its window delegate so I can customize these methods. I find that unlike tableViews and textViews, the textfield's ...
0
votes
1answer
223 views

Paste Unlinked Excel Chart to Powerpoint

I'm currently working on a project transferring 50+ groups of Excel Charts to a powerpoint presentation. I have 50+ items that I'm comparing and making 50+ identical charts. The way that I have it set ...
1
vote
0answers
65 views

Python Paste using Bottle framework Broken Pipe Error

I am using Bottle framework implementing the WSGI Request and response and because of the single thread issue, I changed the server into PythonWSGIServer and tested with Apache bench but the result ...
0
votes
1answer
215 views

Batch file to find file, and copy paste it to another location

needing help with batch file. What I need: to find exact called file (for example from C: drive) and copy paste it to another location on same disk. Example: I need to find file called "textfile.txt" ...
3
votes
2answers
171 views

How simulate CTRL+V keystrokes (paste) using C#

How can we simulate CTRL+V keys (paste) using C#? I have a textbox that hasn't a id for access, for example textbox1.Text = someValue won't work here. I want to fill that textbox (from clipboard) ...
1
vote
2answers
83 views

How to erase spaces in paste function to build URL?

In advance, thank you for your help. Essentially, I am scripting a program that builds a URL which will provide a CSV file. The program asks the user for several inputs and then appends those inputs ...
0
votes
1answer
114 views

vb .net using excel automation to paste data into opened workbook

Is it possible to paste data into an already opened worksheet using office automation from vb.net? (I done it using oledb but is very slow.) Dim Folder As String = "C:\Users\gm1\Desktop\" ...
0
votes
1answer
189 views

vba command to paste special KeepSourceFormatting(K) in powerPoint

i am trying to take a cell range from excel and copy it to powerpoint2010. However I do not want to use the Embedded format but rather the KeepSourceFormatting one. I tried the following command ...
0
votes
2answers
67 views

Append output of two files in shell?

I have two files like this file1 a b c file2 0 1 2 I want to output a,0 b,1 c,2 Appending the two files like this row(n) of file1 +","+ row(n) file2 for every n, total n is same in ...
1
vote
1answer
139 views

Handle special character while doing copy paste a sentence from any source to JSF text box or text area

I have one issue while trying to copy paste the content from word or outlook into the JSF textarea. I had problem in viewing the particular aphostrohe('). Some other Symbols are getting replaced ...
0
votes
1answer
29 views

how to paste two files (columns) to a third file incrementing line+1?

I want to paste two files using the command linux paste ( well any other option will be welcome as well) but incrementing the lines of the second. Better give an example: file1 a b c d e f file2 ...
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
0answers
57 views

How to fix a pasted image in a webkit enabled text field?

I'm using onbile.com's mobile website builder to create a quick & easy mobile version of my site. Since I was being quick, I copied and pasted content, including images into the text box and to ...

1 2 3 4 5 10