我现在有一个excel 2007 VBA的程序,但是这个程序被锁住了。。。,有密码,我想寻求各位大侠们的帮助! 想用excel2010做个小型的系统,现在需要用vba做一个...

作者&投稿:壤缪 (若有异议请与网页底部的电邮联系)
首先建一新EXCEL文件,复制以下代码,执行宏即可
Private Sub VBAPassword()
'你要解保护的Excel文件路径
Filename = Application.GetOpenFilename("Excel文件(*.xls & *.xla & *.xlt),*.xls;*.xla;*.xlt", , "VBA破解")
If Dir(Filename) = "" Then
MsgBox "没找到相关文件,清重新设置。"
Exit Sub
Else
FileCopy Filename, Filename & ".bak" '备份文件。
End If
Dim GetData As String * 5
Open Filename For Binary As #1
Dim CMGs As Long
Dim DPBo As Long
For i = 1 To LOF(1)
Get #1, i, GetData
If GetData = "CMG=""" Then CMGs = i
If GetData = "[Host" Then DPBo = i - 2: Exit For
Next
If CMGs = 0 Then
MsgBox "请先对VBA编码设置一个保护密码...", 32, "提示"
Exit Sub
End If

Dim St As String * 2
Dim s20 As String * 1
'取得一个0D0A十六进制字串
Get #1, CMGs - 2, St
'取得一个20十六制字串
Get #1, DPBo + 16, s20
'替换加密部份机码
For i = CMGs To DPBo Step 2
Put #1, i, St
Next
'加入不配对符号
If (DPBo - CMGs) Mod 2 <> 0 Then
Put #1, DPBo + 1, s20
End If
MsgBox "文件解密成功......", 32, "提示"
Close #1
End Sub

我有一个excel 2007 VBA工程密码忘记了,谁可以帮我破解一下,谢谢!~

85379908@qq.com
你方便的话可以发给我,我给你破解

这个只能拿来玩玩,因为这个还有很明显的bug,可以通过打开开发工具编辑宏。
如果你想改得切底一点,可以把开发工具及其快捷键给隐藏了。