Questions tagged [copy-paste]

For issues relating to cut, copy, and paste operations.

The term "copy-and-paste" refers to the popular, simple method of reproducing text or other data from a source to a destination. It differs from cut and paste in that the original source text or data does not get deleted or removed. The popularity of this method stems from its simplicity and the ease with which users can move data between various applications visually – without resorting to permanent storage.

Source: Wikipedia

3477 questions
1
vote
1 answer

Paste email subject & body into my iPhone app

I would like users to be able to paste a whole email into my App via a single copy operation. The default iPhone email app just seems to copy the body-text of the email (to be expected I suppose). Does anyone know if the email app places the from:…
camelCase
  • 15
  • 3
1
vote
2 answers

Can't disable copy UIWebView

In my ViewController's header file I have: @interface CaseStudyChoiceViewController : UIViewController @property (strong, nonatomic) IBOutlet UIWebView *myWebView; @end Then in the .m file in the ViewDidLoad…
Scooter
  • 4,068
  • 4
  • 32
  • 47
1
vote
1 answer

Is it possible to convert a folder into a file

I'm developing an Android app. It creates a main folder and child folders/files for storing some data. I need to transfer that main folder and it's childs to a computer. But I don't want to just copy those folders. I want to create a file (with a…
MilesDyson
  • 738
  • 1
  • 11
  • 33
1
vote
1 answer

Insert Value into cells that are in a table column after a filter

Not sure why my code isn't working. I am filtering a column in a table by blank values "(blanks)". Then inserting the value "NA" into the first cell and copying that value by dragging down the fill handle down to last cell in the column. Then…
Ship72
  • 93
  • 1
  • 9
  • 20
1
vote
1 answer

Copy a row from one sheet to another using VBA

I have two sheets containing the employee records. Sheet1 contains the Event Date, CardNo, Employee Name, Dept Id, Employee No, Entry and Exit Time, Total Working Hours, Status, ConcatinatedColumn and Remarks (copied through vlookup from…
Faaria Mariam
  • 31
  • 1
  • 1
  • 5
1
vote
4 answers

Search for text in a string, copy & paste rows to new sheet

I am new to VBA programming, and I need some help writing a simple macro in Excel 2010. I need to search for a text string in Column A (the exact text I'm searching for is not specified) and if that string is found within the cell, cut and paste…
BranpanMan
  • 21
  • 1
  • 1
  • 5
1
vote
2 answers

wxPython: Right-click with mouse does not set focus

My GUI currently has right-click options (Cut, Copy, Paste) However, I realize when I right-click over my search bar (wx.SearchCtrl) to try and paste, focus is not set onto the search bar, therefore I cannot…
James the Great
  • 941
  • 2
  • 14
  • 46
1
vote
1 answer

Why does Aptana Studio Freeze when I copy and paste?

Randomly, so not every time, when I paste something into my code on Aptana Studio 3.4.2 it will freeze up, giving me the cursor loading/wait icon, then will in a few seconds go into "Not Responding", so I minimize it and after a few more seconds it…
RedEva
  • 13
  • 3
1
vote
0 answers

Login to Host system from vm-ware guest system using Python

I have a situation, I want to copy some files from host system (which is win7) to guest system (vm-ware image of winXP). For that I have created a python script, but my script only copies files and fails whenever host system's credentials are…
1
vote
1 answer

Copying and Pasting Row and Column Depending on cell value

Hello i need some help with a abit of code, basically i have a workbook which has a lot of data for product Accessories listed in rows in the columns next to these there are the products with blank fields in all of the cells, basically the point of…
Nindi
  • 37
  • 2
  • 9
1
vote
4 answers

My RichTextBox's cut/copy/paste doesn't cut, copy, or paste

Here's my code: void CutAction(object sender, EventArgs e) { richTextBox2.Cut(); } void CopyAction(object sender, EventArgs e) { Clipboard.SetData(DataFormats.Rtf, richTextBox2.SelectedRtf); Clipboard.Clear(); } void PasteAction(object…
Doron Muzar
  • 443
  • 1
  • 10
  • 26
1
vote
3 answers

Hide attachments pasted in Lotus Rich Text field

How to hide an attachment in a Lotus Notes document pasted in a rich text field? Using attach icon the attachment can be hidden using hide-when formula !@IsNewDoc, if it is pasted it remains visible even in case of the same hide when formula. (Lotus…
Jozsef Lehocz
  • 330
  • 3
  • 21
1
vote
2 answers

Android - Get text from clipboard whenever user copy to clipboard

Is there anyway that I can copy from clipboard, whenever the user copy some texts to clipboard in any application? Should I use services in my code? Also is it possible to implement the way for api<11 ? tnx in advance
Alireza Amiri
  • 511
  • 5
  • 24
1
vote
1 answer

Implement clipboard 'Cut' operation with C1RichTextBox

Due to an issue with large images in C1RichTextBox for Silverlight (5.0.20132.340), I want to implement the copy/cut/paste operations in my custom control. I am using the events C1RichTextBox.ClipboardCopying and C1RichTextBox.ClipboardPasting to…
helb
  • 7,609
  • 8
  • 36
  • 58
1
vote
1 answer

IE11 pasting clipboard data to an input element annoyance

I had some javascript that basically listened for the "paste" event on a particular input text element. I did this event binding via jQuery. Now, in previous versions of IE, things worked great. But after upgrading to IE11, the behavior is…
AlvinfromDiaspar
  • 6,611
  • 13
  • 75
  • 140
1 2 3
99
100