Microsoft-office 常见问题
1、工作表写入保护,忘记密码,解决办法:
流程如下:
- 1打开文件
2工具---宏----录制新宏---输入名字如:aa
3停止录制(这样得到一个空宏)
4工具---宏----宏,选aa,点编辑按钮
5删除窗口中的所有字符(只有几个),替换为下面的内容:
- Public Sub AllInternalPasswords()
- ' Breaks worksheet and workbook structure passwords. Bob McCormick
- ' probably originator of base code algorithm modified for coverage
- ' of workbook structure / windows passwords and for multiple passwords
- '
- ' Norman Harker and JE McGimpsey 27-Dec-2002 (Version 1.1)
- ' Modified 2003-Apr-04 by JEM: All msgs to constants, and
- ' eliminate one Exit Sub (Version 1.1.1)
- ' Reveals hashed passwords NOT original passwords
- Const DBLSPACE As String = vbNewLine & vbNewLine
- Const AUTHORS As String = DBLSPACE & vbNewLine & _
- "Adapted from Bob McCormick base code by" & _
- "Norman Harker and JE McGimpsey"
- Const HEADER As String = "AllInternalPasswords User Message"
- Const VERSION As String = DBLSPACE & "Version 1.1.1 2003-Apr-04"
- Const REPBACK As String = DBLSPACE & "Please report failure " & _
- "to the microsoft.public.excel.programming newsgroup."
- Const ALLCLEAR As String = DBLSPACE & "The workbook should " & _
- "now be free of all password protection, so make sure you:" & _
- DBLSPACE & "SAVE IT NOW!" & DBLSPACE & "and also" & _
- DBLSPACE & "BACKUP!, BACKUP!!, BACKUP!!!" & _
- DBLSPACE & "Also, remember that the password was " & _
- "put there for a reason. Don't stuff up crucial formulas " & _
- "or data." & DBLSPACE & "Access and use of some data " & _
- "may be an offense. If in doubt, don't."
- Const MSGNOPWORDS1 As String = "There were no passwords on " & _
- "sheets, or workbook structure or windows." & AUTHORS & VERSION
- Const MSGNOPWORDS2 As String = "There was no protection to " & _
- "workbook structure or windows." & DBLSPACE & _
- "Proceeding to unprotect sheets." & AUTHORS & VERSION
- Const MSGTAKETIME As String = "After pressing OK button this " & _
- "will take some time." & DBLSPACE & "Amount of time " & _
- "depends on how many different passwords, the " & _
- "passwords, and your computer's specification." & DBLSPACE & _
- "Just be patient! Make me a coffee!" & AUTHORS & VERSION
- Const MSGPWORDFOUND1 As String = "You had a Worksheet " & _
- "Structure or Windows Password set." & DBLSPACE & _
- "The password found was: " & DBLSPACE & "$$" & DBLSPACE & _
- "Note it down for potential future use in other workbooks by " & _
- "the same person who set this password." & DBLSPACE & _
- "Now to check and clear other passwords." & AUTHORS & VERSION
- Const MSGPWORDFOUND2 As String = "You had a Worksheet " & _
- "password set." & DBLSPACE & "The password found was: " & _
- DBLSPACE & "$$" & DBLSPACE & "Note it down for potential " & _
- "future use in other workbooks by same person who " & _
- "set this password." & DBLSPACE & "Now to check and clear " & _
- "other passwords." & AUTHORS & VERSION
- Const MSGONLYONE As String = "Only structure / windows " & _
- "protected with the password that was just found." & _
- ALLCLEAR & AUTHORS & VERSION & REPBACK
- Dim w1 As Worksheet, w2 As Worksheet
- Dim i As Integer, j As Integer, k As Integer, l As Integer
- Dim m As Integer, n As Integer, i1 As Integer, i2 As Integer
- Dim i3 As Integer, i4 As Integer, i5 As Integer, i6 As Integer
- Dim PWord1 As String
- Dim ShTag As Boolean, WinTag As Boolean
- Application.ScreenUpdating = False
- With ActiveWorkbook
- WinTag = .ProtectStructure Or .ProtectWindows
- End With
- ShTag = False
- For Each w1 In Worksheets
- ShTag = ShTag Or w1.ProtectContents
- Next w1
- If Not ShTag And Not WinTag Then
- MsgBox MSGNOPWORDS1, vbInformation, HEADER
- Exit Sub
- End If
- MsgBox MSGTAKETIME, vbInformation, HEADER
- If Not WinTag Then
- MsgBox MSGNOPWORDS2, vbInformation, HEADER
- Else
- On Error Resume Next
- Do 'dummy do loop
- For i = To : For j = To : For k = To
- For l = To : For m = To : For i1 = To
- For i2 = To : For i3 = To : For i4 = To
- For i5 = To : For i6 = To : For n = To
- With ActiveWorkbook
- .Unprotect Chr(i) & Chr(j) & Chr(k) & _
- Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & _
- Chr(i3) & Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
- If .ProtectStructure = False And _
- .ProtectWindows = False Then
- PWord1 = Chr(i) & Chr(j) & Chr(k) & Chr(l) & _
- Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
- Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
- MsgBox Application.Substitute(MSGPWORDFOUND1, _
- "$$", PWord1), vbInformation, HEADER
- Exit Do 'Bypass all for...nexts
- End If
- End With
- Next: Next: Next: Next: Next: Next
- Next: Next: Next: Next: Next: Next
- Loop Until True
- On Error GoTo
- End If
- If WinTag And Not ShTag Then
- MsgBox MSGONLYONE, vbInformation, HEADER
- Exit Sub
- End If
- On Error Resume Next
- For Each w1 In Worksheets
- 'Attempt clearance with PWord1
- w1.Unprotect PWord1
- Next w1
- On Error GoTo
- ShTag = False
- For Each w1 In Worksheets
- 'Checks for all clear ShTag triggered to 1 if not.
- ShTag = ShTag Or w1.ProtectContents
- Next w1
- If ShTag Then
- For Each w1 In Worksheets
- With w1
- If .ProtectContents Then
- On Error Resume Next
- Do 'Dummy do loop
- For i = To : For j = To : For k = To
- For l = To : For m = To : For i1 = To
- For i2 = To : For i3 = To : For i4 = To
- For i5 = To : For i6 = To : For n = To
- .Unprotect Chr(i) & Chr(j) & Chr(k) & _
- Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
- Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
- If Not .ProtectContents Then
- PWord1 = Chr(i) & Chr(j) & Chr(k) & Chr(l) & _
- Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
- Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
- MsgBox Application.Substitute(MSGPWORDFOUND2, _
- "$$", PWord1), vbInformation, HEADER
- 'leverage finding Pword by trying on other sheets
- For Each w2 In Worksheets
- w2.Unprotect PWord1
- Next w2
- Exit Do 'Bypass all for...nexts
- End If
- Next: Next: Next: Next: Next: Next
- Next: Next: Next: Next: Next: Next
- Loop Until True
- On Error GoTo
- End If
- End With
- Next w1
- End If
- MsgBox ALLCLEAR & AUTHORS & VERSION & REPBACK, vbInformation, HEADER
- End Sub
或者参考如下内容:
是打开文件需要密码?还是文件打开后设置的修改密码?他们方法不同的,我都用过。(符件中的移除密码,是移除打开文件时需要的密码,无需安装,打开即用,很简单。),如果是能
打开文件,需要取消单元格的修改密码,方法如下:
先打开EXCEL文件,然后点“录制宏”,随便录一下就可以了,然后打开“宏”选“编辑”,将里面的内容全部换成以下文本,然后执行。几分钟后,即可解掉密码。
- Option Explicit
- Public Sub AllInternalPasswords()
- ' Breaks worksheet and workbook structure passwords. Bob McCormick
- ' probably originator of base code algorithm modified for coverage
- ' of workbook structure / windows passwords and for multiple passwords
- '
- ' Norman Harker and JE McGimpsey 27-Dec-2002 (Version 1.1)
- ' Modified 2003-Apr-04 by JEM: All msgs to constants, and
- ' eliminate one Exit Sub (Version 1.1.1)
- ' Reveals hashed passwords NOT original passwords
- Const DBLSPACE As String = vbNewLine & vbNewLine
- Const AUTHORS As String = DBLSPACE & vbNewLine & _
- "Adapted from Bob McCormick base code by" & _
- "Norman Harker and JE McGimpsey"
- Const HEADER As String = "AllInternalPasswords User Message"
- Const VERSION As String = DBLSPACE & "Version 1.1.1 2003-Apr-04"
- Const REPBACK As String = DBLSPACE & "Please report failure " & _
- "to the microsoft.public.excel.programming newsgroup."
- Const ALLCLEAR As String = DBLSPACE & "The workbook should " & _
- "now be free of all password protection, so make sure you:" & _
- DBLSPACE & "SAVE IT NOW!" & DBLSPACE & "and also" & _
- DBLSPACE & "BACKUP!, BACKUP!!, BACKUP!!!" & _
- DBLSPACE & "Also, remember that the password was " & _
- "put there for a reason. Don't stuff up crucial formulas " & _
- "or data." & DBLSPACE & "Access and use of some data " & _
- "may be an offense. If in doubt, don't."
- Const MSGNOPWORDS1 As String = "There were no passwords on " & _
- "sheets, or workbook structure or windows." & AUTHORS & VERSION
- Const MSGNOPWORDS2 As String = "There was no protection to " & _
- "workbook structure or windows." & DBLSPACE & _
- "Proceeding to unprotect sheets." & AUTHORS & VERSION
- Const MSGTAKETIME As String = "After pressing OK button this " & _
- "will take some time." & DBLSPACE & "Amount of time " & _
- "depends on how many different passwords, the " & _
- "passwords, and your computer's specification." & DBLSPACE & _
- "Just be patient! Make me a coffee!" & AUTHORS & VERSION
- Const MSGPWORDFOUND1 As String = "You had a Worksheet " & _
- "Structure or Windows Password set." & DBLSPACE & _
- "The password found was: " & DBLSPACE & "$$" & DBLSPACE & _
- "Note it down for potential future use in other workbooks by " & _
- "the same person who set this password." & DBLSPACE & _
- "Now to check and clear other passwords." & AUTHORS & VERSION
- Const MSGPWORDFOUND2 As String = "You had a Worksheet " & _
- "password set." & DBLSPACE & "The password found was: " & _
- DBLSPACE & "$$" & DBLSPACE & "Note it down for potential " & _
- "future use in other workbooks by same person who " & _
- "set this password." & DBLSPACE & "Now to check and clear " & _
- "other passwords." & AUTHORS & VERSION
- Const MSGONLYONE As String = "Only structure / windows " & _
- "protected with the password that was just found." & _
- ALLCLEAR & AUTHORS & VERSION & REPBACK
- Dim w1 As Worksheet, w2 As Worksheet
- Dim i As Integer, j As Integer, k As Integer, l As Integer
- Dim m As Integer, n As Integer, i1 As Integer, i2 As Integer
- Dim i3 As Integer, i4 As Integer, i5 As Integer, i6 As Integer
- Dim PWord1 As String
- Dim ShTag As Boolean, WinTag As Boolean
- Application.ScreenUpdating = False
- With ActiveWorkbook
- WinTag = .ProtectStructure Or .ProtectWindows
- End With
- ShTag = False
- For Each w1 In Worksheets
- ShTag = ShTag Or w1.ProtectContents
- Next w1
- If Not ShTag And Not WinTag Then
- MsgBox MSGNOPWORDS1, vbInformation, HEADER
- Exit Sub
- End If
- MsgBox MSGTAKETIME, vbInformation, HEADER
- If Not WinTag Then
- MsgBox MSGNOPWORDS2, vbInformation, HEADER
- Else
- On Error Resume Next
- Do 'dummy do loop
- For i = To : For j = To : For k = To
- For l = To : For m = To : For i1 = To
- For i2 = To : For i3 = To : For i4 = To
- For i5 = To : For i6 = To : For n = To
- With ActiveWorkbook
- .Unprotect Chr(i) & Chr(j) & Chr(k) & _
- Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & _
- Chr(i3) & Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
- If .ProtectStructure = False And _
- .ProtectWindows = False Then
- PWord1 = Chr(i) & Chr(j) & Chr(k) & Chr(l) & _
- Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
- Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
- MsgBox Application.Substitute(MSGPWORDFOUND1, _
- "$$", PWord1), vbInformation, HEADER
- Exit Do 'Bypass all for...nexts
- End If
- End With
- Next: Next: Next: Next: Next: Next
- Next: Next: Next: Next: Next: Next
- Loop Until True
- On Error GoTo
- End If
- If WinTag And Not ShTag Then
- MsgBox MSGONLYONE, vbInformation, HEADER
- Exit Sub
- End If
- On Error Resume Next
- For Each w1 In Worksheets
- 'Attempt clearance with PWord1
- w1.Unprotect PWord1
- Next w1
- On Error GoTo
- ShTag = False
- For Each w1 In Worksheets
- 'Checks for all clear ShTag triggered to 1 if not.
- ShTag = ShTag Or w1.ProtectContents
- Next w1
- If ShTag Then
- For Each w1 In Worksheets
- With w1
- If .ProtectContents Then
- On Error Resume Next
- Do 'Dummy do loop
- For i = To : For j = To : For k = To
- For l = To : For m = To : For i1 = To
- For i2 = To : For i3 = To : For i4 = To
- For i5 = To : For i6 = To : For n = To
- .Unprotect Chr(i) & Chr(j) & Chr(k) & _
- Chr(l) & Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
- Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
- If Not .ProtectContents Then
- PWord1 = Chr(i) & Chr(j) & Chr(k) & Chr(l) & _
- Chr(m) & Chr(i1) & Chr(i2) & Chr(i3) & _
- Chr(i4) & Chr(i5) & Chr(i6) & Chr(n)
- MsgBox Application.Substitute(MSGPWORDFOUND2, _
- "$$", PWord1), vbInformation, HEADER
- 'leverage finding Pword by trying on other sheets
- For Each w2 In Worksheets
- w2.Unprotect PWord1
- Next w2
- Exit Do 'Bypass all for...nexts
- End If
- Next: Next: Next: Next: Next: Next
- Next: Next: Next: Next: Next: Next
- Loop Until True
- On Error GoTo
- End If
- End With
- Next w1
- End If
- MsgBox ALLCLEAR & AUTHORS & VERSION & REPBACK, vbInformation, HEADER
- End Sub
读写密码解除
2、office2007怎样添加开发工具选项卡
Microsoft-office 常见问题的更多相关文章
- IIS中使用Microsoft.Office.Interop.Excel 常见问题:RPC 服务器不可用。 (异常来自 HRESULT:0x800706BA) 的异常。等
IIS中使用Microsoft.Office.Interop.Excel 异常1: 检索 COM 类工厂中 CLSID 为 {00024500-0000-0000-C000-000000000046} ...
- 介绍 32 位和 64 位版本的 Microsoft Office 2010
在使用 64 位版本的 Office 2010 运行现有解决方案时存在两个基本问题: Office 2010 中的本机 64 位进程无法加载 32 位二进制文件.在使用现有 Microsoft Act ...
- Microsoft Office Specialist (MOS) 认证考试详解---word 2010 部分
Microsoft Office Specialist ( MOS)认证考试详解 首先是 Microsoft Certification overview http://www.microsoft ...
- Microsoft.Office.Interop.Word 创建word
Microsoft.Office.Interop.Word 创建word 转载:http://www.cnblogs.com/chenbg2001/archive/2010/03/14/1685746 ...
- Microsoft.Office.Interop.Excel的用法以及利用Microsoft.Office.Interop.Excel将web页面转成PDF
1.常见用法 using Microsoft.Office.Interop.Excel; 1)新建一个Excel ApplicationClass ExcelApp = New A ...
- 无法将类型为“Microsoft.Office.Interop.Word.ApplicationClass”的 COM 对象强制转换为接口类型“Microsoft.Office.Interop.Word._Application”。
无法将类型为“Microsoft.Office.Interop.Word.ApplicationClass”的 COM 对象强制转换为接口类型“Microsoft.Office.Interop.Wor ...
- 引用Microsoft.Office.Interop.Excel出现的问题
引用Microsoft.Office.Interop.Excel出现的问题 转自:http://www.hccar.com/Content,2008,6,11,75.aspx,作者:方继祥 操作背 ...
- 超简单的激活Microsoft Office 2016 for Mac 方法
1.简介: 2016年9月14日更新本博客,激活工具同样适用于Office 15.25(160817)版本.我此前在国外网站上找到一个App,下载之后运行,直接点击一个黑色开锁的标识按钮,输入系统密码 ...
- 安装InfoPath 2013后 SharePoint 2010 出现 “找不到 Microsoft.Office.InfoPath, Version=14.0.0....” 的错误的解决方案
1. 症状 您的SharePoint 2010的服务器是不是最近一直出现这个错误呢? Could not load file or assembly 'Microsoft.Office.InfoPat ...
- Microsoft.Office.Interop.Excel操作Excel文件时出现的问题及解决方案
问题描述: Microsoft.Office.Interop.Excel.Worksheet 打不开文件 Microsoft Office Excel 不能访问文件"a.xls". ...
随机推荐
- echarts源码中关于 判断平台的有用代码
function detect(ua) { var os = {}; var browser = {}; // var webkit = ua.match(/Web[kK]it[\/]{0,1}([\ ...
- mariadb中执行数据库脚本的方法
为了项目需求,写如下sql数据库脚本: SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for ...
- Python 文本(txt) 转换成 EXCEL(xls)
#!/bin/env python # -*- encoding: utf-8 -*- #------------------------------------------------------- ...
- android studio 使用问题总结一
1,Theme.AppCompat.Light.DarkActionBar 报错 添加v7包 参考其他:http://blog.csdn.net/sanjiaozhen/article/details ...
- LeetCode OJ-- Longest Common Prefix
https://oj.leetcode.com/problems/longest-common-prefix/ 在多个string的集合中,找出所有string的最长公共前缀. 从头开始 index ...
- 转载:html+js实现只允许输入两位小数的输入框
JS代码: <script language="JavaScript" type="text/javascript"> function clear ...
- hibernate中SQL包含冒号
当前负责的项目使用的是hibernate,而“:”是hibernate的一个占位符,作为预编译使用的, select tmp.pid from (select pid, loginTime, @i : ...
- luogu P1314 聪明的质监员
题目描述 小T 是一名质量监督员,最近负责检验一批矿产的质量.这批矿产共有 n 个矿石,从 1到n 逐一编号,每个矿石都有自己的重量 wi 以及价值vi .检验矿产的流程是: 1 .给定m 个区间[L ...
- 洛谷 P3359 改造异或树
题目描述 给定一棵n 个点的树,每条边上都有一个权值.现在按顺序删掉所有的n-1条边,每删掉一条边询问当前有多少条路径满足路径上所有边权值异或和为0. 输入输出格式 输入格式: 第一行一个整数n. 接 ...
- 如何让你的网页加载时间降低到 1s 内
当初分析了定宽高值和定宽高比这两种常见的图片延迟加载场景,也介绍了他们的应对方案,还做了一点技术选型的工作. 经过一段时间的项目实践,在先前方案的基础上又做了很多深入的优化工作.最终将好奇心日报的网页 ...