To copy is to create a duplicate of an object without destroying the original. Commonly seen in text editors that will let you copy some text and paste it somewhere else.

learn more… | top users | synonyms

0
votes
1answer
17 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 ...
-2
votes
0answers
16 views

Excel giving an item from a list to multiple users from 1 sheet

I'm hoping someone can help. I've got a unique problem and I've looked but can't find an answer. i have upward of 200 users and I need them all to work from a list in order and update the starting ...
0
votes
0answers
9 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
17 views

SQLite copy column values to a new column and/or with function

This is SQLite for Android... I am inserting a new column using ALTER TABLE tablename ADD COLUMN. I have 2 questions: Is there a way I can just copy values from existing columnA to this newly ...
0
votes
1answer
5 views

Copy with symblic link

I have a directory which has many libraries (ex. A,B,C) and few with symbolic link to the libraries in the same directory (ex. A1, A2 and A3 are symbolic link to A). I am copying this directory from ...
1
vote
2answers
17 views

how to create duplicate role of a user in postgres

I need a new user but it should be granted all those privileges that the other existing user/role has. e.g. User A has SELECT privileges on Table1 User A has EXECUTE privileges on Table2 ... If a ...
0
votes
2answers
33 views

Search for folders created after date X and copy them

I need to go through a large folder (let's call it D:\Files ) which contains about 50.000 folders and about 1 million files, and copy all folders that were created (not modified) after August 31th ...
0
votes
1answer
22 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
23 views

PHP copy image from url to server and echo the final url

I am trying to write a code that will copy an image from URL to a relative path on my server with a random file name and echo back the final url. I have 2 problems: It doesn't work with relative ...
1
vote
2answers
37 views

Copying DIV with working functionality

I'm working on a script but it doesn't seems to work. The idea is to copy a DIV and it's jQuery functions, it just stop functioning. http://tinyurl.com/cr5uft9 What am I doing wrong?
0
votes
1answer
16 views

Mac Listen for event: Copy to Pasteboard

I was reading NSPasteboard, then wanted to find.... I am trying to find the correct Notification method that listens to the copy event of data to the clipboard. Also I am trying to find file path ...
0
votes
2answers
16 views

PHP get existing image from directory and copy

I have a existing image in my directory and I want to copy that image and rename it. This is what I have in mind: open registraton.php -> load default picture inside registration.php -> copy default ...
1
vote
1answer
51 views

batch script to find the directory where a file is located, copy all files located in that directory and sub-directories to another directory

So if I have C:\drivers\* with * indicating many sub-folders, I want to find out where my inf files are located, and then copy ALL files that are located in the same directory where my inf files are ...
0
votes
0answers
15 views

Grunt JS copy to network location

I want to use grunt-contrib-copy (or any other grunt copying plugin) to copy files to network location. Trying below: copy: { test: { files: [ { src: ...
1
vote
2answers
16 views

MSBuild copy entire directory while using metadata in path names

Here are few other similar answers that I've found, but none answers my question: Copying entire project structure into another directory using afterbuild task Copy all files and folders using ...
0
votes
0answers
26 views

mysql copy data to another table and mark as transfered

I want to transfer data from table TB to table TA which was entered before today and mark the copied ones as "copied" in TA by. The whole thing has to happen by a routine. My actual code is BEGIN ...
1
vote
0answers
24 views

How-to Giving Loading bar during copy process in php

This is my script: function copyr($source, $dest) { // Simple copy for a file if (is_file($source)) { return copy($source, $dest); } // Make destination directory if (!is_dir($dest)) { ...
0
votes
1answer
25 views

JavaScript stop referencing object after pass it to a function

I know JavaScript passes Objects by reference and thus I'm having a lot of trouble with the following code: function doGradeAssignmentContent(dtos) { var x = 5; ...
-1
votes
0answers
24 views

Copy Text and Icon from JTextPane to Another JTextPane

I'm doing some chat application using JTextPane the application can receive ImageIcon and text. Screenshot: Here is some snippets of Send button: private void ...
0
votes
1answer
59 views

VBA user-defined function to copy value, text formation and hyperlink of a cell?

Given a sample plain excel file here, what is the VBA code to copy value, formation and hyperlink of a cell? i.e. At cell B5 we will call =myCopyCellFunction(B2) and we will get the exact cell value ...
0
votes
0answers
2 views

NSMutableDictionary keeps reference to original object after copying

I faced some copy issues today. I want to create an exact copy of an NSMutableDictionary. I tried using -mutableCopy and -initWithDictionary:copyItems:. -mutableCopy: It does create a copy but does ...
0
votes
1answer
77 views

Insert copied row based on cell value - Excel 2007 Macro

The macro below (modified from here) will insert a blank row above any row that has a value of "0" in column E. Instead of inserting a blank row, is there a way to copy the row with "0" and insert it ...
0
votes
1answer
10 views

Copy one table row to another using SQL

For me, this works: INSERT INTO table_A (name, age, city) SELECT name, age, city FROM table_B WHERE id=1 But now I want to set value for the column 'status' in table_A (this values is not ...
0
votes
1answer
49 views

Immutable data structure or const variable?

When I write a class, it's always a big issue whether to make immutable class or just use const keyword. I came from Objective-C, and when I used Objective-C, there was separated mutable/immutable ...
2
votes
1answer
39 views

Can I cudaMemcpy from device straight into host STL vector?

Pretty much as the title says - I plan to .reserve() some memory on the host via an STL vector, and then cudaMemcpy an array from device to host (i.e. into that reserved host memory). Will the STL ...
1
vote
3answers
87 views

Problems with copy constructor

Dont pay attention to the actual code, just read the question. I have a function that takes 2 parameters of type Polynomial: FiniteFieldElement(int l, Polynomial p, Polynomial irr) { this->l = ...
1
vote
1answer
82 views

C++ Converting memcpy to std::copy

I wanted to replace my "memcpy" with "std::copy", but I just can't find the right way for passing the args. My old memcpy code was memcpy(&uFeatures.Features[0], ...
0
votes
2answers
28 views

Copy File on Modification FIleSystemWatcher, Visual Basic (VS 2012 V11)

After looking through many sites and some tutorial videos, I'm still stumped on this one. I'm finishing up a program and I need to add one last bit of functionality. The program works this way. The ...
0
votes
1answer
30 views

Parallelized copying of Python objects

We have 100 large Python objects in memory (each object is mix of dictionaries, Python standard values (e.g., integers), NumPy objects, Python classes), and we need to copy the most of them "by ...
0
votes
1answer
31 views

C++ template interface auto-resolve assigned type

In Java, you can do the following List<int> myList = new ArrayList<int>(); Iterator iter = myList.Iterator(); Even though Iterator is a generic/template interface, it doesn't have to ...
5
votes
1answer
51 views

C++ streamsize prec = cout.precision(3) - How does it work?

I am kind of newbie in using c++. I have a quick question, probably a dumb question. streamsize prec = cout.precision(3); As I understand correctly this declaration works like that: set the cout ...
0
votes
2answers
53 views

copying a buffer in a struct in C++ style

Say i have a struct like typedef struct { unsigned char flag, type; unsigned short id; uint32 size; } THdr; and a buffer of data coming from a UDP comunication, i have a buffer of ...
0
votes
1answer
14 views

Copy Chart Series Data To Another Chart

I have a chart using the Chart control which has 4 series with a bunch of lines. How would i copy all the series to a second chart? Problematically of course.
1
vote
0answers
29 views

Java WebDriver Copy text Issue

Good Afternoon, So I am trying to Copy some text from a field so I can paste it somewhere else in my test. public static void validateTestCaseCreated(){ ...
1
vote
3answers
48 views

How do i prevent a class referencing its own class?

How do i prevent making a class implicitly referencing to its own class? example: class foo { public foo(int y) { x = y; } public int x; } class program { static void ...
2
votes
2answers
27 views

Copying and pasting files within .jar

I am writing a script that will copy a bunch of files from a .jar file and I want to paste it into another .jar file. This is a bash script. How can I do this without having to extract and repack ...
1
vote
0answers
24 views

Why is FileStream and CopyFile so much slower than Windows Explorer?

I'm trying to a copy a file across a network (Windows Server 2008 R2 to Windows 7 SP1 Enterprise) and when I drag-and-drop using Windows Explorer, I'm getting about 4.5 MB/s. (It's a WAN connection) ...
0
votes
0answers
22 views

Copy in-use files with NTFS Security Permissions

Is there a free Windows utility that will let me copy folders and sub folder contents with their NTFS security permissions and let me copy in-use files from one share to another? I've used RoboCopy ...
0
votes
0answers
17 views

Android: text selection/copy Api < 11

I'm developing an Android application, i would like it to work from API 9. I'm having problems with the copy text. I have a WebView and i can copy normally, longpress, select, touch and it is copied ...
0
votes
0answers
23 views

Copy gridview rows in another gridview on a button_click

I have a textBox and a search button that fills the first Gridview. After that a Second Button Copies the first grid rows in the second grid . After that i should be able to search again in the first ...
0
votes
1answer
9 views

initWithArray:(NSArray *)array copyItems:(BOOL)flag

NSMutableDictionary *dic0 = [[NSMutableDictionary alloc] initWithObjectsAndKeys:@"string0", @"key0", nil]; NSDictionary *dic1 = [[NSDictionary alloc] initWithObjectsAndKeys:@"string1", @"key1", nil]; ...
0
votes
3answers
33 views

How do I make a copy of a JavaScript object?

I need to make a temporary copy of a variable to make changes to. Here's what I mean: var x = ["a", "b", "c"]; var y = x; y[1] = "2" //x: ["a", "b", "c"]; //y: ["a", 2, "c"]; It's worth pointing ...
0
votes
4answers
74 views

Is it possible in vi to know which line the cursor is?

I want to copy paste some lines in vi. I have a text like python class1 def: code code code ... code code code last line class1 python class2 def: code code code ... code code ...
0
votes
0answers
75 views

Programming techniques to minimize memory use in R [closed]

I am working on a project that will involve a lot of manipulation of fairly large (Census) files using the R language. I expect to run into memory management problems, and am learning about the ...
0
votes
2answers
64 views

Better Way to Copy Move Rename File, Visual Basic (VS 2012 V11)

I want to copy, rename, and move a file to a new location. According to http://msdn.microsoft.com/en-us/library/36xbexyf(v=vs.90).aspx the following code should do so: This example copies the file ...
0
votes
1answer
28 views

Copying change list history in perforce

Just wondering if anyone knows how to copy a folder from on //depot/one/proj to //depot/two/proj with all the changelist history for files withing //depot/one/proj Thanks, sam
0
votes
1answer
23 views

How do you in Applescript cp a file to a folder with a variable in name and or prompt for credentials without shell script?

I have an issue where I need it to prompt for admin credentials if needed and cant find a workable solution. set foo to computer name of (system info) set p to (path to desktop) set ...
0
votes
1answer
13 views

What is the main difference using “copy” and “strong” ownership qualifiers in property declaration with block types?

Example #1 @property (nonatomic, copy) void (^errorBlock) (NSError *); Example #2 @property (nonatomic, strong) void (^errorBlock) (NSError *); I know that blocks are standard variables on ...
0
votes
0answers
25 views

Run Time Error 1004 - copy method of worksheet class failed. copy worksheets to new workbooks

So I've already looked extensively for a solution to this but I just can't figure it out. I have a workbook with the same code below and it works flawlessly. The second I moved it over to this ...
7
votes
2answers
74 views

First bracketed assignment is as time-consuming as full assignment?

Regarding this answer in: What exactly is copy-on-modify semantics in R, and where is the canonical source? We can see that, at the first time a vector is altered with '[<-', R copies the entire ...

1 2 3 4 5 61