Tagged Questions

1
vote
1answer
27 views

Wille php copy() work for a person viewing the site who has the site which i’m copying from blocked?

Say I use php copy(), to get a file from a site. And then a user who is using a proxy filtering service that has that site blocked, will the site still be able to copy that file f …
0
votes
0answers
61 views

Slow network file copy on Windows 7

I wrote a program that uses xcopy to transfer files (usually between 1KB and 2MB) over our intranet. Usually, I am copying files from my host machine (Windows 7 x64) to a VMWare vi …
1
vote
3answers
128 views

Copy java object/class from one classloader to another classloader

Hi is there a way to copy one class loaded context (atrributes etc) from one classloader (for instance a 'made' class Point) to another classloader? Making clear, Example: I hav …
0
votes
1answer
19 views

copy data from sheet 1 to sheet 2 in the same workbook in excel

Hi all, An excel sheet (sheet 1), gets updated on a daily basis by the Admin dept. I need to copy this data in sheet 1 to sheet 2 automatically in the same workbook. Is this pos …
2
votes
8answers
143 views

Insert into an STL queue using std::copy

Hi, I'd like to use std::copy to insert elements into a queue like this: vector<int> v; v.push_back( 1 ); v.push_back( 2 ); queue<int> q; copy( v.begin(), v.end(), i …
0
votes
2answers
25 views

about get value from sqlite

Code Sample: NSString *str= [NSString stringWithUTF8String:(char *)sqlite3_column_text(selectStatement, 1)]; Test *t=[[Test alloc] init]; t.str=[str copy]; // why use "copy" here? …
2
votes
3answers
50 views

Copy documentum content with apache IOUtils.copy() and setContent()

I want to copy the content from one object stored in one docbase to another object stored in another docbase. I do not want to create a file because I have more than 300 k files to …
0
votes
1answer
20 views

Copy from one NSTableView to another (With Core Data Bindings)

Hi all, I have a NSTableView binded to core data. I have another NSTableView, currently not binded to anything ( but that can change if need be). When a press a button, I want th …
0
votes
7answers
109 views

Java - Instantiating objects of type X when all you have is the reference type

I had a quick look at the "Related Questions" suggested but I couldn't find one directly related to what I'm asking. Even if there was one, I'd still appreciate your opinion on the …
0
votes
3answers
34 views

MSIE and addEventListener Problem in Javascript?

document.getElementById('container').addEventListener('copy',beforecopy,false ); In Chrome / Safari, the above will run the "beforecopy" function when the content on the page is …
1
vote
5answers
112 views

Bash Script to find the most recently modified file

Hi, I have two folders, for arguments sake /Volumes/A and /Volumes/B. They are mounted network shares from a Windows server containing a load of .bkf files from Backup Exec. I am …
0
votes
1answer
55 views

How to copy styled text in JTextPane

I'm trying to create a WYSIWYG editor using JTextPane. I'm using DefaultEditorKit.CopyAction to copy text in the editor. But this method does not preserve the style of the text. C …
0
votes
2answers
40 views

PHP copy() works on localhost(wamp) but not on my real web domain

ok so i'm trying to copy file.xml into another location something like copy('file.xml',../../folder/newfile.xml) ; it works just fine on my wamp virtual server but on my real site …
3
votes
2answers
99 views

How can I copy a file in Perl and maintain its timestamp?

I am using the File::Copy module to copy a file in Perl: #! /usr/bin/perl -w use File::Copy; copy("somefile.log", "copiedfile.log"); I would like to preserve timestamps (part …
0
votes
3answers
45 views

Copy on delete of browser history

I'd like to know if there is a programming hook or some other feature in windows vista and IE 7 or 8 that would let a computer administrator let the user think they were deleting t …

1 2 3 4 5 19 next
15 30 50 per page