The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
58 views

incompatible types in assignment c

I have following structs defined in my header file, struct nl_packet { int seq; FRAMETYPE type; CnetAddr dest; CnetAddr src; uint32_t checksum; size_t length; ...
0
votes
0answers
14 views

Copying only some fields to new record in VBA access 2010 [closed]

i am trying to make a button in a form (form for entering new items) that makes new record and copy from the previous one some of the fields and let me fill the rest. how can i do at?
-2
votes
0answers
11 views

Copying Data from a closed workbook using a list of criterias on sheet 2

I am a newbie here on Excel VB. I have two workbooks, say workbook1 and a closed workbook called workbook2.xlsx. Workbook1 has two worksheets, Report and MyCriteria. Workbook2.xlsx has one worksheet ...
-1
votes
1answer
22 views

PHP Passing by value to function large objects and modifing small part of it [closed]

I read a lot that passing by reference to functions in php is wrong if we don't really need to change original object and we want to increase performance. So let's say I'm passing a quite large object ...
0
votes
0answers
47 views

Folder copy method with credentials that shows the current file being copied

As the title says, i'm looking for a method or class that will copy a folder remotely from one computer to another. I would also like to show the current file that is being copied in a label as well. ...
0
votes
1answer
17 views

Copying an IIS log file based on file name, this is today's date

I am trying to setup a batch script that will copy over the latest IIS logs based on the file name from our Exchange Client Access Server over to my system so that I can analyze the logs. The problem ...
0
votes
3answers
44 views

Copying of array leads to 0's?

I am learning C and one of my functions (not shown here) depends on two arrays being the same. I have one array and am trying to generate a copy but what happens is that both arrays turn out to be ...
0
votes
1answer
58 views

Oracle SQL: Transferring tables from one user to another

So I created a new user called temp, with a password temp. I have another user called Scott that is identified by tiger. There are three tables in that profile that I'd like to copy onto temp. So i ...
3
votes
1answer
75 views

Powershell - Copying Files to a share

This is my first post so be gentle. I'm starting to use Powershell and found it very intuitive and would like some advice/examples on how to properly script something specific instead of just copying ...
3
votes
1answer
59 views

looking for an efficient way to alternate between 2 queues in php

I wrote the following code to print a binary tree row by row. The idea is to use 2 queues and alternate between them. I'm swapping the 2 queues by using a $tmp variable. I don't think this is ...
2
votes
10answers
177 views

How to memcpy() from argv[]?

I want to copy string from argv[0] but I don't know how to get the size of argv[0]. How to do this? int main(int argc, char* argv[]) { char str[20]; if(argc>0) memcpy(str, argv[0], ...
0
votes
2answers
84 views

check for duplicate filename when copying files in C#

I want to copy files to a directory and rename to a particular format. but if the filename already exists, it should append {1}, {2} or {3} before the file extension. My code renamed and copied the ...
1
vote
1answer
189 views

Windows Copying Command Like XCOPY, COPY, ROBOCOPY not working in C Language in System()

I am writing this code in C language where I first find out the user logged in and then from that user's AppData, I need to copy some files. I am able to find, user, I am able to generate path, but ...
0
votes
0answers
25 views

prevent text copying in wordpress.com

I'm helping a friend creating a wordpress.com blog for an event that he's organizing. He asked if there was a way to prevent people from copying his articles. Of course I said it's very difficult, ...
2
votes
2answers
60 views

Deduping & Copying Files [BASH]

I need your help guys! I'll try to be as specific as possible. Scenario: I have a MOUNTED image on a Linux Distro. I copied all the files in this mounted Distro to a folder I have on my Linux System ...
0
votes
1answer
182 views

Copying a portion of an IplImage into another Iplimage (that is of same size is the source)

I have a set of mask images that I need to use everytime I recognise a previously-known scene on my camera. All the mask images are in IplImage format. There will be instances where, for example, the ...
0
votes
0answers
55 views

Finding string in file and setting it to another in C

So I have a file that has this line in it " 1301,105515018,"Boatswain","Michael R.",CSE, 230,="R01" " and I want to get each element, separated by the commas, and store it into its corresponding ...
1
vote
1answer
76 views

How to set the destination folder when copying PHP

Hi guys pretty new to PHP been trying to put together an app using copy and paste of code (dont hate me) and tailoring it to suit my need but I have hit a wall. Problem with doing things this way is ...
0
votes
0answers
128 views

Network copy - transferring files from one server to another

This question is very basic but something that I've been bothered by recently. Let's say there are two servers A & B in the same network as a workstation W running say Win 7. Now when I transfer ...
9
votes
2answers
89 views

How does a copying garbage collector ensure objects are not accessed while copied?

On collection, the garbage collector copies all live objects into another memory space, thus discarding all garbage objects in the process. A forward pointer to the copied object in new space is ...
1
vote
2answers
126 views

How do I bulk copy files with brackets in the filename using Powershell

$Basically what I'm trying to do is: I'm pulling information from a .csv spreadsheet that contains a list of files that I need. The problem is, the directory they are in contains 16,000+ files! I ...
0
votes
1answer
84 views

Mysql combining data from columns to row

The rough structure of the mysql table is like this Person Name, Mobile Number1, Mob2, Mob3, Mob4. What I am trying to do is: For example, if the table has 4 records for the same person like: Person ...
0
votes
2answers
89 views

How to learn programming beyond just copying syntax?

I'm trying to learn Java programming and I'm watching Lynda.com Java Essential Training and I find myself following along with my Eclipse program open and just copying and typing out syntax with the ...
1
vote
3answers
77 views

Empty .net project just for copying files to output folder?

I have a large 'product' which is deployed as a set of zip files (separated into Web Apps, Web Services, Database, Tools, etc.). I currently use MSBuild to collect files from VSS, build, zip and copy ...
1
vote
1answer
42 views

copying in same directory of the project in java?

int reval = fcCari.showOpenDialog(this); String sourcePath = fcCari.getSelectedFile().getAbsolutePath(); String targetPath = "C:\\Users\\nadzar\\Downloads\\Compressed\\JavaSQLite\\resource\\"; ...
2
votes
1answer
59 views

can't copy object properties to another in javascript

this should be simple enough, but i'm having trouble copying the properties of an object to another. var tableFormatting = { table: { style: { width: "100px", ...
0
votes
2answers
336 views

Copying files from a shared folder to a local folder in javaservlet

Im developing a servlet, and I have to copy a file (*.doc) from a shared folder in other computer to my servlet webapp space, but I can't. The trouble is not writing on my Apache Server, instead of, ...
2
votes
3answers
103 views

Copying children files of a source to a destination in Java

I'm trying to make a program that copies a directory's children, and I can't label all the specific names because they vary throughout each folder. Here's the code I have, but if the source is ...
0
votes
1answer
43 views

overhead of copying: doubles vs pointers

the overhead of copying two doubles can be noticeable but often less than what a pair of pointers impose from C++ prog. lang. could someone explain it?
0
votes
1answer
77 views

VB.net How to copy object from inherited class

I have ClassA with some member data s1 and s2 I also have ClassB which inherits ClassA and has its own member data s3 and s4 Now I instantiate ObjectA from ClassA and populate the member data s1 and ...
0
votes
1answer
253 views

error while copying the files from local file system to HDFS in Hadoop

I am using hadoop for processing the files, presently i am trying to copy the files from local file system to HDFS using the command below hadoop fs -put d:\hadoop\weblogs /so/data/weblogs Got the ...
0
votes
0answers
47 views

.testsettings not copying files

I have a strange issue that has popped up recently. I have a Test project in my solution where I need to copy a bunch of sql scripts to a \TestResults\out folder so that a temporary database can be ...
0
votes
1answer
63 views

LGPL License and shared libraries

I would like to know if it's allowed to distribuite a binary-only/non-LGPL'ed application together with a shared library (used by the application itself) in a single archive, where the original source ...
0
votes
2answers
69 views

Will copying occur if the methods of an array element, which is a value type object, are called?

To save the memory, I defined some record-like structs and stored their instances in arrays, as the following code shows: struct Foo { readonly char _bar; readonly int _baz; // other ...
2
votes
1answer
144 views

adding new jpanel with default components in swing

can any one tell me how to add a panel in a jtabbedPane whenever i am clicking on a "add" button.Its like google chrome new tab.But the thing is ,the generated panel must contains some default ...
2
votes
2answers
184 views

Unix- Copying the same file from multiple directories into a new directory while renaming the files

I have 36 subdirectories in the same directory named 10,11,12,....45 and a subdirectory logs in each subdirectory (except for the directory logs) there is the same file called log.lammps i was ...
0
votes
4answers
119 views

Efficient/faster copying for standard containers like std::vector

For customized use, I have inherited std::vector to a custom class Vector. For my requirement this public inheritance is ok. One intention is to avoid making copies of a vector array multiple times, ...
1
vote
1answer
169 views

Objective-C: copying specific NSDictionary Values into another NSDictionary

I have a dictionary networks, which is a Dictionary of dictionaries I'm trying to copy specific entries from networks into compare Addr - ( NSDictionary * ) compareAddr { NSMutableDictionary ...
0
votes
2answers
258 views

Modified time using os.stat in Python gets lower when copying files

The issue I am running into is part of using os.stat on a path (Take C:\myfile1.txt for example). When I run os.stat on this file and take the 9th element in the resulting list I get the modified time ...
2
votes
4answers
150 views

Copying big objects, c++

I am sure this has been answered, but I am no programmer and couldn't find/understand the appropriate answer. Suppose I have a massive class big for which would like to overload a binary operator, say ...
3
votes
3answers
276 views

Prefill form with jQuery

Have a invoice amount generated by a plugin on page. I want to copy its id into a form field in order to pre-fill it. <div id="invoicediv">$123.00</div> <div ...
0
votes
1answer
198 views

vbscript hta freezing on When copying files

I have an HTA that copies a set of files to a USB stick as a part of creating a usb utilities disk. It works correctly, but the problem is that the HTA becomes unresponsive while the copy process is ...
0
votes
1answer
63 views

Copying a Portion of Graphics Memory to RAM Java

I'm trying to get a portion of the Graphics Memory, and copy what is on it to normal RAM. Is there a possible way to do this with Java? I've searched around a bit, but to no avail. Also, I would ...
-2
votes
1answer
190 views

Batch file putting text into a txt file [closed]

SET FILECONTENTS=1.) In the url of the item you want to use the buy button on, Put Javascript:startbuy();^ 2.) Inspect element on buy button.^ 3.) Put the code at the bottom in it.^ 4.) You now no ...
0
votes
2answers
129 views

Batch File -Copying a lot of text into a .txt file

I want it so when I click on a batch file, It copies a LOT of stuff into a batch file, I tried this using the >> method, ( echo example>>example.txt ) and it only copies half of what I want it to ...
-2
votes
1answer
106 views

Creating new columns for values that are repeating more than once so that all the column values will be converted to a row through EXCEL VBA

Im modifying the question that I have already posted. My requirement is very simple. DEFECT_ID LOG_TIME STATUS 1001 08/22/2012 12:03:34 Open 1001 08/22/2012 12:03:35 Pending 1001 ...
0
votes
0answers
390 views

c# Difference in copying one range to another

I have some code where I get two ranges from different spreadsheets then copy one into the other. The final spreadsheet is then saved. The ranges are set up beforehand. I have two functions: ...
0
votes
0answers
18 views

Copying Files from Windows XP to VMBox On Local Machine(Both Windows OS and VMBox are on same Machine)

I am using Windows XP OS on my Computer and I had installed VirtualBox (which is of linux) also on same local Computer. I need to install Oracle Database in VirtualBox then how can i copy from ...
0
votes
2answers
133 views

Copying values from one column that matches a ID to a new sheet by creating new columns for each values through EXCEL VBA

I have a requirement where there is a group of values under one ID(this ID is unique for each group). I want the values of the group to be copied to a new sheet by creating new columns for each values ...
1
vote
1answer
81 views

Copying compound objects in python

I have a dictionary of compound objects made up of a string, a list, and two ints. I am looping through this dictionary, performing some tests, and then based on these tests saving the currently ...

1 2 3