+ Reply to Thread
Results 1 to 7 of 7

Resetting CutCopyMode

Hybrid View

  1. #1
    Forum Expert
    Join Date
    03-31-2009
    Location
    Barstow, Ca
    MS-Off Ver
    Excel 2002 & 2007
    Posts
    2,164

    Resetting CutCopyMode

    On occasion I manually copy a selection. When I then select another cell, my SelectionChange event changes the Font.ColorIndex of a button (this is by design), which sets the CutCopyMode to false, which removes the copy border, so I can't paste the clipboard.

    Resetting the CutCopyMode back to xlCopy does not replace the copy border.

    I cannot find any way to replace the copy border so I can paste it.

    Is there some way to prevent the copy border from being removed? Or resetting it?

  2. #2
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Resetting CutCopyMode

    Hello Foxguy,

    You should post your workbook.
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  3. #3
    Forum Expert
    Join Date
    03-31-2009
    Location
    Barstow, Ca
    MS-Off Ver
    Excel 2002 & 2007
    Posts
    2,164

    Re: Resetting CutCopyMode

    Here's a simple workbook, to demonstrate the problem.
    Attached Files Attached Files

  4. #4
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Resetting CutCopyMode

    Hello Foxguy,

    Here is the updated macro code. It has already been installed in the attached workbook.
    Option Explicit
    
    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    
      Dim CopyCells As Boolean
      Dim oButton As Object, lColorIndex As XlColorIndex
      Static PrevSelection As Range
        
        Application.EnableEvents = False
    
        If Application.CutCopyMode Then
           CopyCells = True
        End If
        
        On Error Resume Next
        Set oButton = Sheet1.Buttons("Button 1")
        '
        If Not oButton Is Nothing Then
             With oButton
                lColorIndex = .Font.ColorIndex
                .Font.ColorIndex = IIf(lColorIndex = 3, 15, 3)
             End With
        End If
        
       If CopyCells Then
           PrevSelection.Copy
        Else
           Set PrevSelection = Target
        End If
        
        Application.EnableEvents = True
    
    End Sub
    Attached Files Attached Files

  5. #5
    Forum Expert
    Join Date
    03-31-2009
    Location
    Barstow, Ca
    MS-Off Ver
    Excel 2002 & 2007
    Posts
    2,164

    Re: Resetting CutCopyMode

    Leith;

    Nice idea. I never thought of using a static variable.
    I take it that you can't think of any way to read the copy border?

  6. #6
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Resetting CutCopyMode

    Hello Foxguy,

    Sorry I don't follow you on this...
    I take it that you can't think of any way to read the copy border?
    The copy border or "marching ants" as it is sometimes called is present after you you type CTRL+C. Did you want to remove the border after the data is pasted?
    Last edited by Leith Ross; 06-07-2009 at 08:06 PM.

  7. #7
    Forum Expert
    Join Date
    03-31-2009
    Location
    Barstow, Ca
    MS-Off Ver
    Excel 2002 & 2007
    Posts
    2,164

    Re: Resetting CutCopyMode

    Did you want to remove the border after the data is pasted?
    No, I know that I can set cutcopymode=False to do that. I was hoping to be able to read the range that is surrounded by the marching ants and then reset it after they were removed by the macro. Then I wouldn't have to use a static variable. I just have an unreasonable fear of static variables.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1