Not Cut/Copy & Paste

hi
i have windows 7. when i cut and copy the folders from pen drives. its not paste in my computer drives. its paste only desktop. Copy and Cut does not working. its give me some error.kindly tell how to solve the prob.
thanks

if you are able to paste it in your desktop but not on a drive then I would say this is a permission issue. The desktop is under your profile aka your credintials while the drive is  under different ACE management. Have you looked at the permissions?
Could be a local or domain GPO or set on the drive it self.

Similar Messages

  • Why are edit (Cut/Copy/Paste) controls not active?

    I am new to QT. I am trying to cut up a large mpeg file (created by converting and IFO file from a DVD) into small video clips. However the main editing controls (undo, redo, cut, copy, paste, delete and trim to selection) are all de-activated. I don't have this problem with other mpeg files.
    Any ideas why?
    Dell Notebook Windows XP

    MPEG-1 and 2 are playback formats and can't be edited using QuickTime Pro. It can't extract or export the audio portion from these muxed track formats.
    MPEG Streamclip (Free) can convert MPEG to QuickTime formats and can also do basic editing.
    You'll need the QuickTime MPEG-2 Playback Component ($20) and the software above to convert DVD (MPEG-2 format).
    The component can't convert or open CSS encrypted (Hollywood) DVD's.

  • How do I reinstall the edit button on my Firefox 4 toolbar; cut, copy, paste, and print?

    I recently have been having problems with my Firefox 4 tool bars. Right now, the Edit icons are no longer on the tool bar, specifically Cut, Copy, Paste, and Print. If there were other Edit icons, they too are gone. All the other icons have remained.
    I would appreciate it if you could advise me how to reinstall those specific icons.
    Also recently, ALL my tool bars, and task and status bar disappeared. This was only in Firefox 4.0; IE 8 was not affected. Clicking F11 did not work. I could not function without them. Then, a short time later, they "automatically" reappeared. I have not idea of why the disappeared or reappeared.
    Thank you for any help you can provide.
    Sanford A. Berman

    You can find the Copy, Paste, and Cut buttons next to Firefox > Edit (and in its sub menu) and in the regular Edit menu on the menu bar (press F10 if the menu bar is hidden).
    The buttons next to Firefox > Edit are enabled if there is something to do with them, just like with the toolbar buttons.
    You can find the Copy, Paste, and Cut toolbar buttons in the toolbar palette in the Customize window and drag them on a toolbar.
    Open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout"
    *http://kb.mozillazine.org/Toolbar_customization
    *https://support.mozilla.com/kb/Back+and+forward+or+other+toolbar+items+are+missing

  • Undo/Redo for Cut, Copy, Paste

    I am trying to implement Undo/Redo for Cut,Copy,Paste in a Treetable.
    I have to support undo/redo for multiple nodes being cut/copied. I am not sure how I should be going about implementing this. Any help will be greatly appreciated.
    Thanks

    If the class you are using doesn't support cut, copy, and paste already, usually what you do is store a list of actions in two lists. One for actions done, the other for redos (when there is an undo). Capture the data before and after each operation (you can create a KeyListener to listen for the events) and store that in a list. When undo is called, the last element on the list should be undone, either by taking it out of the list and reiterating through the elements still there, or implementing an undo method in the object you are trying to change. Then put that element on the redo list in case that is called. This works well with graphics and stuff, but I never tried to implement it in a tree with nodes and stuff, so that's about the most I can help with right now. I hope it helps some!
    -JBoeing

  • Problem of cut,copy,past ,undo and redo actions

    hi
    iam a student of computer science
    iam working on my project notpad
    in this i have to apply the command of doing cut ,copy ,past ,undo,redo
    how can i use thes actions in my project
    please help me for making my project
    i will wait your response at [email protected]

    what u can do is
    just component.cut();
    or
    compoennt.copy();
    component.paste();
    for undo and redo
    u need to take help of undo manager
    which will tell u whether u can undo or not
    same with redo case
    hope it will work

  • Jeditor pane cut, copy, paste

    I have an applet using jeditor panes. when you right click a popup shows and you can choose to cut, copy, paste, select all. I use the functions copy, cut, paste, selectAll which jeditorpane inherits. This works properly in java 1.3X but in java 1.41 it is not working. Is there cliboard communication problems with java 1.41?

    Hi dhhyde,
    If you are having issues with your cutting, copying and pasting items from your iPad, you may want to try some things to troubleshoot.
    First, quit all running applications and test again -
    iOS: Force an app to close
    Next, I would try restarting the iPad -
    Turn your iOS device off and on (restart) and reset
    If the issue is still present, you may want to restore the iPad as a new device -
    How to erase your iOS device and then set it up as a new device or restore it from backups
    Thanks for using Apple Support Communities.
    Best,
    Brett L  

  • Image selection,cut,copy,paste

    Hi,
    I need to select a portion of the graphics thats been drawn on a panel,
    cut this image,copy and paste it on any part of the panel. I have tried using clipRect but am not sure whether this will work.
    Please help me doing the cut,copy,paste of these images. It would be nice to have a sample code.
    Arpana

    Since your question is to learn and understand how Illustrator works, I would answer it with no. Unlike other programs, Illustrator can't cut parts of raster images because it is mostly vector graphics editing program. It is possible to end up with a rectangular shape of a cut raster images using the method Jacob described but technically behind the scenes it is not cutting the raster image as other raster programs like Photoshop do but it is generating a new image from the old one by a capability in Illustrator called rasterizing. Illustrator can rasterize (regenerate a new raster image) from any selection of objects - vector, raster, and both at a specified resolution using commands like Rasterize and Flatten Transparency. You can think of it as automating the process of exporting to a raster file format and placing it back in Illustrator.
    For that reason, I would recommend to cut raster images in other programs like Photoshop and place them in the desired size in Illustrator or use clipping paths and Opacity masks to hide unwanted parts  when this is preferable for flexibility or if you find it faster and less hassle than cutting the placed image outside of Illustrator.

  • How To set cut/copy/paste for JtextArea

    Hai
    i could not able to set cut copy paste in JTextArea
    pls help me in this filed..
    thanx.

    This will do...... :)
    private Hashtable actionHash = new Hashtable();
    Action ac[]=new Action[3];
    JButton butt[]=new JButton[3];
    int count=0;
    String ac_names[]={DefaultEditorKit.cutAction,DefaultEditorKit.copyAction,DefaultEditorKit.pasteAction};
    Action[] actions = YourTextPane.getActions();
            for (int i=0; i<actions.length; i++)
                String name = (String)actions.getValue (Action.NAME);
    actionHash.put(name, actions[i]);
    for (int i=0; i<actions.length; i++)
    ac[i] = getHashedAction(ac_names[i]);
    butt[i]=new JButton(ac[i]);
    protected Action getHashedAction(String name) {
    return (Action)actionHash.get(name);

  • The right mouse button on my 8740w has failed (clicks but no result, i.e Cut/Copy/Paste/Delete menu

    My right mouse button clicks but no result, i.e Cut/Copy/Paste/Delete menu does not appear.
    I think the hardware has failed.
    Note the mousepd is not the issue.  The right button is the problem
    Left button works fine

    Same deal with me except the right button has failed twice. You may find that if you push on it past the click with a bit more force it will respond. They swapped the hardware and same thing occurred.
    HP should be ashamed that they would put such awful mouse hardware on its flagship product. Whoever designed it should be fired.
    If HP had any customer loyalty they would offer a hardware update and offer it to those who are still under warranty.
    Suffice to say I will never, ever purchase an HP workstation again.
    Good luck.

  • Editor - Cut, Copy & Paste styles

    Using the package from http://www.calcom.de/eng/dev/cctxt.htm but it doesn't seem to work with cut, copy & paste styles
    Still the cut, copy & paste styles should still work but not quite sure if its my IntroductionDocument class causing the problem or those methods. Attach is my working editor to download from:
    http://home.pacific.net.au/~akhalil/editor/editor.zip
    The problems is:
    * When I cut text with bold and plain, the whole paragraph goes bold?
    The bold text Introduction is the first word of the document but still
    it shouldn't effect the whole paragraph.
    * When I paste, loose the bold styles but get the remanining plain text fonts instead.
    If you could help me out, I would be greatly appreciated.
    Thanks
    Abraham Khalil

    Hi dhhyde,
    If you are having issues with your cutting, copying and pasting items from your iPad, you may want to try some things to troubleshoot.
    First, quit all running applications and test again -
    iOS: Force an app to close
    Next, I would try restarting the iPad -
    Turn your iOS device off and on (restart) and reset
    If the issue is still present, you may want to restore the iPad as a new device -
    How to erase your iOS device and then set it up as a new device or restore it from backups
    Thanks for using Apple Support Communities.
    Best,
    Brett L  

  • Iphone cut copy paste

    After downloading the 3.0 update the cut copy paste feature is not complete My phone only shows copy when highlight text any help here Thanks

    If you're intending to do it from a SMS it will only copy. If you do it through a note you can cut. Screenshots below:
    http://i43.tinypic.com/rjftco.jpg
    http://i44.tinypic.com/1ypwuc.jpg

  • 0 down vote favorite share [fb] share [tw]        How to hide cut/copy/paste/Replace- menu on the UIWebView when it is being displayed over the keyboard.  Detail: I am having a HTML from, having text box, displayed using UIWebView. If user types in text b

    How to hide cut/copy/paste/Replace… menu on the UIWebView when it is being displayed over the keyboard.
    Detail: I am having a HTML from, having text box, displayed using UIWebView. If user types in text box it shows the keyboard. Now If user tap and hold on text box it shows a popup menu. Now while keyboard and pop up are being displayed user scrolls the view. At this time it shows pop up over the keyboard which I need to hide.
    I tried setMenuVisible of UIMenuController when popup rect and keyboard rect intersects each other on viewDidScroll but it didn't help me.
    Any clues will help a lot.
    Thanks.

    You are more likely to get an answer if you post programming problems to the Developer forum. This forum is intended for normal user level problems.

  • How do I insert additional clips into my video timeline in Elements 13?  When clicking 'add media' it added the clips at end of video rather than in their appropriate position.  Could not 'cut and paste'.

    How do I insert additional clips into my video timeline in Elements 13?  When clicking 'add media' it added the clips at end of video rather than in their appropriate position.  Could not 'cut and paste'.

    bhsleadership
    I am in the process of preparing to test a sample from your brand and model camera in my Premiere Elements 8.0/8.0.1 on Windows 7 64 bit. I will have the results probably tomorrow morning.
    For now I just want to put you through the drill that I do for anyone who says he/she is using Premiere Elements 8.0/8.0.1.
    1. Are you working from the 8.0/8.0.1 Update of the program?
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4653
    2. Do you have the automatic Background Rendering and AutoAnalyzer features turned OFF.
    For Background Rendering option. See Edit Menu/Preferences/General.
    For AutoAnalyzer option. Click on Organizer in the row below the blue active Organize header in order to open the Elements Organizer. In the Elements Organizer workspace, go to Edit Menu/Preferences/AutoAnalyzer Options and disable all the AutoAnalzyer options. To return to the Premiere Elements workspace from the Elements Organizer workspace, in the Elements Organizer workspace, go to File Menu/Exit.
    Is your computer optimized in spite of the fact that  you have a high end laptop? I presumed so but always go to verify, no pile ups of preview files, conformed video and audio files et al.
    Looking at the properties of your source media, I see:
    video compression = MPEG1
    audio compression = MPEG-Layer1 (.mp2)
    Frame Size = 640 x 480 (4:3)
    Pixel Aspect Ratio = 1.0
    Frame Rate = 30 progressive frames per second
    With properties like those you are sure to get a red line over that content since there is no project preset with that description.
    But, your choice of the default NTSC DV Standard would have been mine also.
    I am heading to try to get a quick look at the behavior of the sample video here in my Premiere Elements 8.0/8.0.1.
    To be continued.
    ATR

  • I tried to paste text from another site into my Firebox document, but it says "Firefox does not support Copy & Paste". How do I enable clipboard? I never had problems like this on Firefox before...why?

    I tried to paste text I copied from another site into my Notepad++ (as I've always done in the past with no problem).
    But today for the 1st time, I got a message when I tried to paste the text "Firefox does not support Copy & Paste". What?
    What happened to the clipboard?

    That's a security feature in Firefox.
    Use this extension to add the necessary permissions to Firefox - Allow Clipboard Helper: <br />
    https://addons.mozilla.org/en-US/firefox/addon/852

  • How to add cut,copy,paste functionality ?

    Hello everybody,
    I have to add cut,copy,paste functionality to my RichTextEditor for which I have already added
    buttons to editors toolbar,Now I want to add these three functionalities to my editor.
    Can anyone tell me or provide me some code sample for it ?
    Thanks

    Well Thank you for your response,What I am looking for is ,the user should be able to copy,cut and paste the selected text anywhere,
    (e.g.If user selects the text and clicks the COPY button on the RichTextEditor , he can copy that selected text into notepad or any other editor or any other place in the system)
    I have written the code for copy and its working properly
    System.setClipboard(richTextEditor.selection.text);
    I was wondering how to write the code for cut and paste.
    many thanks again

Maybe you are looking for