设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

返回列表 发新帖
查看: 2726|回复: 3
打印 上一主题 下一主题

[基础应用] [求助]怎样实现excel工作表只能看不能复制

[复制链接]
跳转到指定楼层
1#
发表于 2008-11-5 10:02:29 | 只看该作者 回帖奖励 |正序浏览 |阅读模式
怎样实现excel工作表只能看不能复制,复制到其他表也不行。
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅

点击这里给我发消息

4#
发表于 2008-11-6 23:33:11 | 只看该作者
方大侠今天刚上任就抖出好料啊,收藏了,谢谢。
3#
发表于 2008-11-6 21:42:31 | 只看该作者
转成PDF, 转换时选不可复制. 或者打印成图片.

Try below code:

'Disable Cut/Copy in Excel Workbooks

'The code below must be placed in the Private Module of the Workbook Object (ThisWorkbook).
'To get there easily, right click on the Excel icon, top left next to File and choose View Code.
'In here paste the code below, close & save and then re-open.

Private Sub Workbook_Activate()
Dim oCtrl As Office.CommandBarControl

'Disable all Cut menus
     For Each oCtrl In Application.CommandBars.FindControls(ID:=21)
            oCtrl.Enabled = False
     Next oCtrl
   
'Disable all Copy menus
     For Each oCtrl In Application.CommandBars.FindControls(ID:=19)
            oCtrl.Enabled = False
     Next oCtrl
      
        Application.CellDragAndDrop = False

End Sub

Private Sub Workbook_Deactivate()
Dim oCtrl As Office.CommandBarControl

'Enable all Cut menus
     For Each oCtrl In Application.CommandBars.FindControls(ID:=21)
            oCtrl.Enabled = True
     Next oCtrl
   
'Enable all Copy menus
     For Each oCtrl In Application.CommandBars.FindControls(ID:=19)
            oCtrl.Enabled = True
     Next oCtrl
      
        Application.CellDragAndDrop = True

End Sub

Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)
    With Application
        .CellDragAndDrop = False
        .CutCopyMode = False      'Clear clipboard
    End With
End Sub

点击这里给我发消息

2#
发表于 2008-11-5 11:17:03 | 只看该作者
保护的方式可以使表内的公式无法复制到其他表。
如果要完全不能复制,可以用代码禁用复制功能,不过这样一来很麻烦,因为复制功能不是EXCEL一个在用。
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2024-11-25 21:36 , Processed in 0.101956 second(s), 28 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表