-1
votes
1answer
35 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 ...
1
vote
3answers
139 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
115 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?
0
votes
1answer
379 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 ...
-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.
1
vote
3answers
696 views

Remove Styles from Text when Copying / Cutting using CSS or Javascript

Yo, Alright been noodling on this one for a while: How copy/cut styled text without bringing along any style baggage (background-color, color, etc)? Couple of routes of attacks that have been ...
0
votes
1answer
847 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 ...
3
votes
1answer
1k views

Use org.eclipse cut/copy/paste in custom RCP aplication

I am developing a RCP application and I need cut/copy/paste in this app. As there are already commands which are delivered by eclipse (org.eclipse.ui.edit.copy, ...) I want to use them (I already ...
0
votes
1answer
376 views

How to show Properties Dialog for multiple Files with different locations

HI. Could you help me please. How to show standard windows "File Properties" dialog for a list of files, but the files have different location? For ex: D:\ D:\Pictures E:\Text.txt I've found an ...
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". ...
1
vote
5answers
916 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?