+ Reply to Thread
Results 1 to 3 of 3

Lock to copy/ modification data

  1. #1
    Forum Contributor
    Join Date
    06-02-2005
    Location
    India
    MS-Off Ver
    2007
    Posts
    138

    Question Lock to copy/ modification data

    on executing my workbook i need to disable copy/cut mode or any modification in this workbook. User should able to see but prevent from any modifications and to copy data/contents from my workbook.

  2. #2
    Patrick Molloy
    Guest

    RE: Lock to copy/ modification data

    protect and lock every sheet. also, set each sheets 'ScrollArea' to a small
    range - that would prevent the user from even being able to select any cells

    you can also use a split window and protect the sheet to prevent users
    selecting anaything...here are a few ideas
    Sub Lock_up()

    With ActiveWindow
    .SplitRow = 29
    .SplitColumn = 10
    .FreezePanes = True
    End With
    Range("L32").Select
    Application.Width = 494.25
    Application.Height = 485.25
    ActiveSheet.Protect DrawingObjects:=True, Contents:=True, Scenarios:=True
    ActiveSheet.EnableSelection = xlNoSelection
    ActiveWorkbook.Protect Structure:=True, Windows:=True

    End Sub


    "ilyaskazi" wrote:

    >
    > on executing my workbook i need to disable copy/cut mode or any
    > modification in this workbook. User should able to see but prevent from
    > any modifications and to copy data/contents from my workbook.
    >
    >
    > --
    > ilyaskazi
    > ------------------------------------------------------------------------
    > ilyaskazi's Profile: http://www.excelforum.com/member.php...o&userid=23969
    > View this thread: http://www.excelforum.com/showthread...hreadid=476081
    >
    >


  3. #3
    Forum Contributor
    Join Date
    06-02-2005
    Location
    India
    MS-Off Ver
    2007
    Posts
    138
    Great!!!!! It works.

    Thankyou..

+ 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