See the top rated post in this thread. Click here

Results 1 to 4 of 4

Thread: Can't Copy & Paste. How to clear data from the last Copy/Paste command

  1. #1
    All AUGI, all the time
    Join Date
    2009-11
    Location
    Raleigh, NC
    Posts
    944
    Login to Give a bone
    0

    Question Can't Copy & Paste. How to clear data from the last Copy/Paste command

    I cant copy and paste new object. Its retaining the previous objects.

    How can I clear the the data from the last copy/paste command?

  2. #2
    Administrator Ed Jobe's Avatar
    Join Date
    2000-11
    Location
    Turlock, CA
    Posts
    6,420
    Login to Give a bone
    0

    Default Re: Can't Copy & Paste. How to clear data from the last Copy/Paste command

    Windows automatically manages the clipboard. If you are getting an error, I would suggest rebooting.
    C:> ED WORKING....


    LinkedIn

  3. #3
    Administrator BlackBox's Avatar
    Join Date
    2009-11
    Posts
    5,719
    Login to Give a bone
    1

    Default Re: Can't Copy & Paste. How to clear data from the last Copy/Paste command

    Code:
    (defun c:ClearClipboard (/ )
      (if dos_clipboard
        (progn
          (dos_clipboard "")
          (prompt "\nClipboard has been cleared. \n")
          )
         (prompt "\n** Error: DOSLib not loaded ** \n")
      )
      (princ)
    )
    "How we think determines what we do, and what we do determines what we get."

    Sincpac C3D ~ Autodesk Exchange Apps

    Computer Specs:
    Dell Precision 3660, Core i9-12900K 5.2GHz, 64GB DDR5 RAM, PCIe 4.0 M.2 SSD (RAID 0), 16GB NVIDIA RTX A4000

  4. #4
    Certifiable AUGI Addict
    Join Date
    2001-03
    Location
    Tallahassee, FL USA
    Posts
    3,667
    Login to Give a bone
    2

    Default Re: Can't Copy & Paste. How to clear data from the last Copy/Paste command

    Open the clipboard window by pressing the Windows + V keys on your keyboard.
    Click on the three dots in the corner of the clipboard item you want to delete.
    Select the “Delete” option to permanently remove this item from your clipboard history.

Similar Threads

  1. Replies: 4
    Last Post: 2014-01-02, 12:59 PM
  2. Replies: 0
    Last Post: 2012-06-13, 08:45 PM
  3. Clear previous textfile data
    By CADfunk MC in forum VBA/COM Interop
    Replies: 9
    Last Post: 2008-12-05, 01:18 PM
  4. Right-click copy, paste, paste aligned
    By revit.wishlist1942 in forum Revit Architecture - Wish List
    Replies: 0
    Last Post: 2008-07-04, 11:39 AM
  5. Replies: 3
    Last Post: 2006-10-24, 03:49 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •