+ Reply to Thread
Results 1 to 2 of 2

limit copy command?

  1. #1
    Johan Johansson
    Guest

    limit copy command?

    I want the user only to be able to copy visible cells, how do I do
    this?
    Also I want to disable all forms of cut (shortkeys, mouse movements
    etc), how do I do this?

    Thanks

    /Johan

  2. #2
    Jim S
    Guest

    RE: limit copy command?

    Hi, I assume that by visible cells, you mean those with content (?). If so,
    then something like this might help:

    For Each c In Range("b5:i34, b37:i42")
    If c.Value <> "" Then
    c.Select
    Selection.Interior.ColorIndex = 6
    Selection.Font.ColorIndex = 10
    [b5].Select
    Else
    End If
    Next c

    "Johan Johansson" wrote:

    > I want the user only to be able to copy visible cells, how do I do
    > this?
    > Also I want to disable all forms of cut (shortkeys, mouse movements
    > etc), how do I do this?
    >
    > Thanks
    >
    > /Johan
    >


+ 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