-1
votes
0answers
4 views

Excel 2010 Cut/Paste jumps to the top of the spreadsheet [closed]

I have a system running Windows 7 Professional (32 bit) and MS Office 2010. In Excel 2010, I have a spreadsheet that contains several hundred rows of data. When I cut and paste a section of data, ...
-1
votes
1answer
39 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
1k views

Excel Macro Find Text value Cut and Paste then shift cells up

I have a nightmare task to migrate from one accounting package to another. I have 9340 rows in columns A,B and G which needs to be ordered in a certain way before it can be imported by new system. ...
0
votes
2answers
219 views

Moving rows based on column values

I need to scan through all of the rows in the "Master" worksheet, find any cells with the value "Shipped" in the column "Status", then cut and paste each entire row to another sheet. The pasted rows ...
1
vote
3answers
140 views

C# Copy Cut in GUI

So I want to have an Edit bar in my C# Windows Form. Is there any way to easily have a these options added? It just needs to copy text.
0
votes
1answer
116 views

Always disable paste

For a "common" look and feel I have an app that shows the paste/cut/copy buttons in a ribbon but I want to have paste always disabled no matter what field is selected. How do I approach this?
1
vote
0answers
109 views

How to register cut/paste(by jsni) method to RichTextArea?

Following code is used to set attribute style to body element and register cut/paste code to it,but failed.Strangelly,when debugging,variable body is not null and attribute "style" exists,but frame ...
0
votes
0answers
117 views

Ubuntu cut and store characters from a string

I have a string of file names and I would like to cut out the the first 6 characters from the string and store it to a variable. Here is my attempt and I don't understand why this doesn't work. ...
0
votes
1answer
386 views

How to ensure that the following logic for jstree custom context menu works correctly?

I would like this to work like explorer.exe in Windows, that is only if we have cut or copied an element that the paste item will appear.. this works sometimes but perhaps there is something that I'm ...
0
votes
2answers
256 views

How to capture cut and paste action in file watcher using C#

I have written file watcher functionality to focus on particular directory activities. I can read all events like creating ,deleting ,renaming and changing the file/folder. But i don't know how to ...
0
votes
1answer
573 views

cut/paste behaves like copy/paste in Excel

I, in fact two end users have seen a strange issue in Excel. When they CTRL+X to cut some cells and CTRL+V to paste, it does copy/paste, not cut/paste They said it is related to the new version addin ...
3
votes
4answers
1k views

Unix join on more than two files

I have three files, each with an ID and a value. sdt5z@fir-s:~/test$ ls a.txt b.txt c.txt sdt5z@fir-s:~/test$ cat a.txt id1 1 id2 2 id3 3 sdt5z@fir-s:~/test$ cat b.txt id1 4 id2 5 id3 6 ...
-2
votes
2answers
381 views

Custom cut copy and paste UI?

I want to change the buttons on the cut, copy and paste pop over UI to be my own, but i'm not sure how to go about doing this, and whether or not i'd need to design my own UI to do it.
0
votes
1answer
122 views

I can't seem to copy the rows in CFGRID and paste them

I am trying to copy the text in a cfgrid but it simply wont copy anything. The cfgrid format is HTML. I do not want to make the grid editable, I just want the user to be able to cut and paste what is ...
3
votes
1answer
250 views

JQuery infinite slider - cut and paste method?

I am trying to create a slider that slides across the page. When the slider is finished scrolling I want to cut the :first element and append it after the :last. How would this be done.
0
votes
1answer
2k views

Excel Macro: conditional cut and paste between workbooks

So I want a macro running in an Excel file ("input.xls") that is searching a column in another Excel file ("data.xls") for the value "1" (the only values in that columns are 1s and 0s). When it finds ...
0
votes
1answer
149 views

Pipe a certain field of an input stream in a command, and paste back the results

Say I have an input stream consisting of lines separated into a certain number of fields. I would like to cut on the various fields, pipe a certain field (or fields) to a program (which is assumed to ...
0
votes
1answer
857 views

Qt “Copy/Paste/Cut”

Well, i'm doing a Text Editor, basically where you write the text is a "QPlainTextEdit" i'm having issues, i'm trying to do in "Edit" Menu, an option to Copy/Paste/Cut. With Copy i meant, you select ...
1
vote
1answer
353 views

Disable cut and/or paste in ObjC

I'd like to disable cut and/or paste in the menubar at runtime, in my ObjC app. I know that that's possible in iOS using -(BOOL)canPerformAction:(SEL)aSelector withSender:(id)sender Is there ...
0
votes
3answers
802 views

Cut & paste of file

In C# the easiest way, to Cut+Paste myself(exe program) from c:\data to c:\data2 if i click on a button in VS windows forms app ?
0
votes
1answer
1k views

Override iPhone copy menu captions on a long-press?

Is it possible to override the captions in the "Copy" menu when the iphone user long-presses on some text? Essentially, I'd like to change the text to something like "Create a Note" instead of "Copy". ...
3
votes
3answers
2k views

Is there a Perl substitute for the cut and paste shell commands?

I saw once a quick and dirty Perl implementation for the cut and paste linux commands. It was something like perl 'print "$F1"' filename to substitute a cut -f1 filename command Can someone tell me ...
1
vote
5answers
917 views

Implementing copy, cut and paste

I want to implement copy, cut and paste in my drawing program (copy part of an image that is selected) I don't know how to start Any Ideas?