今天下班前分享一下之前在网上搜到的两段好用的VBA代码,貌似都来自国外,觉得挺好,模仿不来。

第一段的功能是修改VBA控件中的文本框控件,使其右键可以选择粘贴、复制、剪切等:

  1. Option Explicit
  2.  
  3. ' Required API declarations
  4. Private Declare Function CreatePopupMenu Lib "user32" () As Long
  5. Private Declare Function InsertMenuItem Lib "user32" Alias "InsertMenuItemA" (ByVal hMenu As Long, ByVal un As Long, ByVal bool As Boolean, ByRef lpcMenuItemInfo As MENUITEMINFO) As Long
  6. Private Declare Function TrackPopupMenu Lib "user32" (ByVal hMenu As Long, ByVal wFlags As Long, ByVal X As Long, ByVal Y As Long, ByVal nReserved As Long, ByVal hwnd As Long, lprc As RECT) As Long
  7. Private Declare Function DestroyMenu Lib "user32" (ByVal hMenu As Long) As Long
  8. Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
  9. Private Declare Function GetCursorPos Lib "user32" (lpPoint As POINTAPI) As Long
  10.  
  11. ' Type required by TrackPopupMenu although this is ignored !!
  12. Private Type RECT
  13. Left As Long
  14. Top As Long
  15. Right As Long
  16. Bottom As Long
  17. End Type
  18.  
  19. ' Type required by InsertMenuItem
  20. Private Type MENUITEMINFO
  21. cbSize As Long
  22. fMask As Long
  23. fType As Long
  24. fState As Long
  25. wID As Long
  26. hSubMenu As Long
  27. hbmpChecked As Long
  28. hbmpUnchecked As Long
  29. dwItemData As Long
  30. dwTypeData As String
  31. cch As Long
  32. End Type
  33.  
  34. ' Type required by GetCursorPos
  35. Private Type POINTAPI
  36. X As Long
  37. Y As Long
  38. End Type
  39.  
  40. ' Constants required by TrackPopupMenu
  41. Private Const TPM_LEFTALIGN = &H0&
  42. Private Const TPM_TOPALIGN = &H0
  43. Private Const TPM_RETURNCMD = &H100
  44. Private Const TPM_RIGHTBUTTON = &H2&
  45.  
  46. ' Constants required by MENUITEMINFO type
  47. Private Const MIIM_STATE = &H1
  48. Private Const MIIM_ID = &H2
  49. Private Const MIIM_TYPE = &H10
  50. Private Const MFT_STRING = &H0
  51. Private Const MFT_SEPARATOR = &H800
  52. Private Const MFS_DEFAULT = &H1000
  53. Private Const MFS_ENABLED = &H0
  54. Private Const MFS_GRAYED = &H1
  55.  
  56. ' Contants defined by me for menu item IDs
  57. Private Const ID_Cut =
  58. Private Const ID_Copy =
  59. Private Const ID_Paste =
  60. Private Const ID_Delete =
  61. Private Const ID_SelectAll =
  62.  
  63. ' Variables declared at module level
  64. Private FormCaption As String
  65. Private Cut_Enabled As Long
  66. Private Copy_Enabled As Long
  67. Private Paste_Enabled As Long
  68. Private Delete_Enabled As Long
  69. Private SelectAll_Enabled As Long
  70.  
  71. Public Sub ShowPopup(oForm As UserForm, strCaption As String, X As Single, Y As Single)
  72.  
  73. Dim oControl As MSForms.TextBox
  74. Static click_flag As Long
  75.  
  76. ' The following is required because the MouseDown event
  77. ' fires twice when right-clicked !!
  78. click_flag = click_flag +
  79.  
  80. ' Do nothing on first firing of MouseDown event
  81. If (click_flag Mod <> ) Then Exit Sub
  82.  
  83. ' Set object reference to the textboxthat was clicked
  84. Set oControl = oForm.ActiveControl
  85.  
  86. ' If click is outside the textbox, do nothing
  87. If X > oControl.Width Or Y > oControl.Height Or X < Or Y < Then Exit Sub
  88.  
  89. ' Retrieve caption of UserForm for use in FindWindow API
  90. FormCaption = strCaption
  91.  
  92. ' Call routine that sets menu items as enabled/disabled
  93. Call EnableMenuItems(oForm)
  94.  
  95. ' Call function that shows the menu and return the ID
  96. ' of the selected menu item. Subsequent action depends
  97. ' on the returned ID.
  98. Select Case GetSelection()
  99. Case ID_Cut
  100. oControl.Cut
  101. Case ID_Copy
  102. oControl.Copy
  103. Case ID_Paste
  104. oControl.Paste
  105. Case ID_Delete
  106. oControl.SelText = ""
  107. Case ID_SelectAll
  108. With oControl
  109. .SelStart =
  110. .SelLength = Len(oControl.Text)
  111. End With
  112. End Select
  113.  
  114. End Sub
  115.  
  116. Private Sub EnableMenuItems(oForm As UserForm)
  117.  
  118. Dim oControl As MSForms.TextBox
  119. Dim oData As DataObject
  120. Dim testClipBoard As String
  121.  
  122. On Error Resume Next
  123.  
  124. ' Set object variable to clicked textbox
  125. Set oControl = oForm.ActiveControl
  126.  
  127. ' Create DataObject to access the clipboard
  128. Set oData = New DataObject
  129.  
  130. ' Enable Cut/Copy/Delete menu items if text selected
  131. ' in textbox
  132. If oControl.SelLength > Then
  133. Cut_Enabled = MFS_ENABLED
  134. Copy_Enabled = MFS_ENABLED
  135. Delete_Enabled = MFS_ENABLED
  136. Else
  137. Cut_Enabled = MFS_GRAYED
  138. Copy_Enabled = MFS_GRAYED
  139. Delete_Enabled = MFS_GRAYED
  140. End If
  141.  
  142. ' Enable SelectAll menu item if there is any text in textbox
  143. If Len(oControl.Text) > Then
  144. SelectAll_Enabled = MFS_ENABLED
  145. Else
  146. SelectAll_Enabled = MFS_GRAYED
  147. End If
  148.  
  149. ' Get data from clipbaord
  150. oData.GetFromClipboard
  151.  
  152. ' Following line generates an error if there
  153. ' is no text in clipboard
  154. testClipBoard = oData.GetText
  155.  
  156. ' If NO error (ie there is text in clipboard) then
  157. ' enable Paste menu item. Otherwise, diable it.
  158. If Err.Number = Then
  159. Paste_Enabled = MFS_ENABLED
  160. Else
  161. Paste_Enabled = MFS_GRAYED
  162. End If
  163.  
  164. ' Clear the error object
  165. Err.Clear
  166.  
  167. ' Clean up object references
  168. Set oControl = Nothing
  169. Set oData = Nothing
  170.  
  171. End Sub
  172.  
  173. Private Function GetSelection() As Long
  174.  
  175. Dim menu_hwnd As Long
  176. Dim form_hwnd As Long
  177. Dim oMenuItemInfo1 As MENUITEMINFO
  178. Dim oMenuItemInfo2 As MENUITEMINFO
  179. Dim oMenuItemInfo3 As MENUITEMINFO
  180. Dim oMenuItemInfo4 As MENUITEMINFO
  181. Dim oMenuItemInfo5 As MENUITEMINFO
  182. Dim oMenuItemInfo6 As MENUITEMINFO
  183. Dim oRect As RECT
  184. Dim oPointAPI As POINTAPI
  185.  
  186. ' Find hwnd of UserForm - note different classname
  187. ' Word 97 vs Word2000
  188. #If VBA6 Then
  189. form_hwnd = FindWindow("ThunderDFrame", FormCaption)
  190. #Else
  191. form_hwnd = FindWindow("ThunderXFrame", FormCaption)
  192. #End If
  193.  
  194. ' Get current cursor position
  195. ' Menu will be drawn at this location
  196. GetCursorPos oPointAPI
  197.  
  198. ' Create new popup menu
  199. menu_hwnd = CreatePopupMenu
  200.  
  201. ' Intitialize MenuItemInfo structures for the 6
  202. ' menu items to be added
  203.  
  204. ' Cut
  205. With oMenuItemInfo1
  206. .cbSize = Len(oMenuItemInfo1)
  207. .fMask = MIIM_STATE Or MIIM_ID Or MIIM_TYPE
  208. .fType = MFT_STRING
  209. .fState = Cut_Enabled
  210. .wID = ID_Cut
  211. .dwTypeData = "Cut"
  212. .cch = Len(.dwTypeData)
  213. End With
  214.  
  215. ' Copy
  216. With oMenuItemInfo2
  217. .cbSize = Len(oMenuItemInfo2)
  218. .fMask = MIIM_STATE Or MIIM_ID Or MIIM_TYPE
  219. .fType = MFT_STRING
  220. .fState = Copy_Enabled
  221. .wID = ID_Copy
  222. .dwTypeData = "Copy"
  223. .cch = Len(.dwTypeData)
  224. End With
  225.  
  226. ' Paste
  227. With oMenuItemInfo3
  228. .cbSize = Len(oMenuItemInfo3)
  229. .fMask = MIIM_STATE Or MIIM_ID Or MIIM_TYPE
  230. .fType = MFT_STRING
  231. .fState = Paste_Enabled
  232. .wID = ID_Paste
  233. .dwTypeData = "Paste"
  234. .cch = Len(.dwTypeData)
  235. End With
  236.  
  237. ' Separator
  238. With oMenuItemInfo4
  239. .cbSize = Len(oMenuItemInfo4)
  240. .fMask = MIIM_TYPE
  241. .fType = MFT_SEPARATOR
  242. End With
  243.  
  244. ' Delete
  245. With oMenuItemInfo5
  246. .cbSize = Len(oMenuItemInfo5)
  247. .fMask = MIIM_STATE Or MIIM_ID Or MIIM_TYPE
  248. .fType = MFT_STRING
  249. .fState = Delete_Enabled
  250. .wID = ID_Delete
  251. .dwTypeData = "Delete"
  252. .cch = Len(.dwTypeData)
  253. End With
  254.  
  255. ' SelectAll
  256. With oMenuItemInfo6
  257. .cbSize = Len(oMenuItemInfo6)
  258. .fMask = MIIM_STATE Or MIIM_ID Or MIIM_TYPE
  259. .fType = MFT_STRING
  260. .fState = SelectAll_Enabled
  261. .wID = ID_SelectAll
  262. .dwTypeData = "Select All"
  263. .cch = Len(.dwTypeData)
  264. End With
  265.  
  266. ' Add the 6 menu items
  267. InsertMenuItem menu_hwnd, , True, oMenuItemInfo1
  268. InsertMenuItem menu_hwnd, , True, oMenuItemInfo2
  269. InsertMenuItem menu_hwnd, , True, oMenuItemInfo3
  270. InsertMenuItem menu_hwnd, , True, oMenuItemInfo4
  271. InsertMenuItem menu_hwnd, , True, oMenuItemInfo5
  272. InsertMenuItem menu_hwnd, , True, oMenuItemInfo6
  273.  
  274. ' Return the ID of the item selected by the user
  275. ' and set it the return value of the function
  276. GetSelection = TrackPopupMenu _
  277. (menu_hwnd, _
  278. TPM_LEFTALIGN Or TPM_TOPALIGN Or TPM_RETURNCMD Or TPM_RIGHTBUTTON, _
  279. oPointAPI.X, oPointAPI.Y, _
  280. , form_hwnd, oRect)
  281.  
  282. ' Destroy the menu
  283. DestroyMenu menu_hwnd
  284.  
  285. End Function

使用时复制进VBA工程中,再在窗体中新建一个文本框控件即可右击看到效果。

第二段的功能是破解EXCEL工作簿的所有密码,包括工作表保护密码,工作簿保护密码:

  1. Public Sub AllInternalPasswords()
  2. ' Breaks worksheet and workbook structure passwords. Bob McCormick
  3. ' probably originator of base code algorithm modified for coverage
  4. ' of workbook structure / windows passwords and for multiple passwords
  5. '
  6. ' Norman Harker and JE McGimpsey 27-Dec-2002 (Version 1.1)
  7. ' Modified 2003-Apr-04 by JEM: All msgs to constants, and
  8. ' eliminate one Exit Sub (Version 1.1.1)
  9. ' Reveals hashed passwords NOT original passwords
  10. Const DBLSPACE As String = vbNewLine & vbNewLine
  11. Const AUTHORS As String = DBLSPACE & vbNewLine & _
  12. "Adapted from Bob McCormick base code by" & _
  13. "Norman Harker and JE McGimpsey"
  14. Const HEADER As String = "AllInternalPasswords User Message"
  15. Const VERSION As String = DBLSPACE & "Version 1.1.1 2003-Apr-04"
  16. Const REPBACK As String = DBLSPACE & "Please report failure " & _
  17. "to the microsoft.public.excel.programming newsgroup."
  18. Const ALLCLEAR As String = DBLSPACE & "The workbook should " & _
  19. "now be free of all password protection, so make sure you:" & _
  20. DBLSPACE & "SAVE IT NOW!" & DBLSPACE & "and also" & _
  21. DBLSPACE & "BACKUP!, BACKUP!!, BACKUP!!!" & _
  22. DBLSPACE & "Also, remember that the password was " & _
  23. "put there for a reason. Don't stuff up crucial formulas " & _
  24. "or data." & DBLSPACE & "Access and use of some data " & _
  25. "may be an offense. If in doubt, don't."
  26. Const MSGNOPWORDS1 As String = "There were no passwords on " & _
  27. "sheets, or workbook structure or windows." & AUTHORS & VERSION
  28. Const MSGNOPWORDS2 As String = "There was no protection to " & _
  29. "workbook structure or windows." & DBLSPACE & _
  30. "Proceeding to unprotect sheets." & AUTHORS & VERSION
  31. Const MSGTAKETIME As String = "After pressing OK button this " & _
  32. "will take some time." & DBLSPACE & "Amount of time " & _
  33. "depends on how many different passwords, the " & _
  34. "passwords, and your computer's specification." & DBLSPACE & _
  35. "Just be patient! Make me a coffee!" & AUTHORS & VERSION
  36. Const MSGPWORDFOUND1 As String = "You had a Worksheet " & _
  37. "Structure or Windows Password set." & DBLSPACE & _
  38. "The password found was: " & DBLSPACE & "$$" & DBLSPACE & _
  39. "Note it down for potential future use in other workbooks by " & _
  40. "the same person who set this password." & DBLSPACE & _
  41. "Now to check and clear other passwords." & AUTHORS & VERSION
  42. Const MSGPWORDFOUND2 As String = "You had a Worksheet " & _
  43. "password set." & DBLSPACE & "The password found was: " & _
  44. DBLSPACE & "$$" & DBLSPACE & "Note it down for potential " & _
  45. "future use in other workbooks by same person who " & _
  46. "set this password." & DBLSPACE & "Now to check and clear " & _
  47. "other passwords." & AUTHORS & VERSION
  48. Const MSGONLYONE As String = "Only structure / windows " & _
  49. "protected with the password that was just found." & _
  50. ALLCLEAR & AUTHORS & VERSION & REPBACK
  51. Dim w1 As Worksheet, w2 As Worksheet
  52. Dim i As Integer, j As Integer, k As Integer, l As Integer
  53. Dim m As Integer, n As Integer, i1 As Integer, i2 As Integer
  54. Dim i3 As Integer, i4 As Integer, i5 As Integer, i6 As Integer
  55. Dim PWord1 As String
  56. Dim ShTag As Boolean, WinTag As Boolean
  57.  
  58. Application.ScreenUpdating = False
  59. With ActiveWorkbook
  60. WinTag = .ProtectStructure Or .ProtectWindows
  61. End With
  62. ShTag = False
  63. For Each w1 In Worksheets
  64. ShTag = ShTag Or w1.ProtectContents
  65. Next w1
  66. If Not ShTag And Not WinTag Then
  67. MsgBox MSGNOPWORDS1, vbInformation, HEADER
  68. Exit Sub
  69. End If
  70. MsgBox MSGTAKETIME, vbInformation, HEADER
  71. If Not WinTag Then
  72. MsgBox MSGNOPWORDS2, vbInformation, HEADER
  73. Else
  74. On Error Resume Next
  75. Do 'dummy do loop
  76. For i = To : For j = To : For k = To
  77. For l = To : For m = To : For i1 = To
  78. For i2 = To : For i3 = To : For i4 = To
  79. For i5 = To : For i6 = To : For n = To
  80. With ActiveWorkbook
  81. .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)
  82. If .ProtectStructure = False And _
  83. .ProtectWindows = False Then
  84. 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)
  85. MsgBox Application.Substitute(MSGPWORDFOUND1, _
  86. "$$", PWord1), vbInformation, HEADER
  87. Exit Do 'Bypass all for...nexts
  88. End If
  89. End With
  90. Next: Next: Next: Next: Next: Next
  91. Next: Next: Next: Next: Next: Next
  92. Loop Until True
  93. On Error GoTo
  94. End If
  95. If WinTag And Not ShTag Then
  96. MsgBox MSGONLYONE, vbInformation, HEADER
  97. Exit Sub
  98. End If
  99. On Error Resume Next
  100. For Each w1 In Worksheets
  101. 'Attempt clearance with PWord1
  102. w1.Unprotect PWord1
  103. Next w1
  104. On Error GoTo
  105. ShTag = False
  106. For Each w1 In Worksheets
  107. 'Checks for all clear ShTag triggered to 1 if not.
  108. ShTag = ShTag Or w1.ProtectContents
  109. Next w1
  110. If ShTag Then
  111. For Each w1 In Worksheets
  112. With w1
  113. If .ProtectContents Then
  114. On Error Resume Next
  115. Do 'Dummy do loop
  116. For i = To : For j = To : For k = To
  117. For l = To : For m = To : For i1 = To
  118. For i2 = To : For i3 = To : For i4 = To
  119. For i5 = To : For i6 = To : For n = To
  120. .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)
  121. If Not .ProtectContents Then
  122. 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)
  123. MsgBox Application.Substitute(MSGPWORDFOUND2, _
  124. "$$", PWord1), vbInformation, HEADER
  125. 'leverage finding Pword by trying on other sheets
  126. For Each w2 In Worksheets
  127. w2.Unprotect PWord1
  128. Next w2
  129. Exit Do 'Bypass all for...nexts
  130. End If
  131. Next: Next: Next: Next: Next: Next
  132. Next: Next: Next: Next: Next: Next
  133. Loop Until True
  134. On Error GoTo
  135. End If
  136. End With
  137. Next w1
  138. End If
  139. MsgBox ALLCLEAR & AUTHORS & VERSION & REPBACK, vbInformation, HEADER
  140. End Sub

使用时复制进要破解的EXCEL的VBA工程中,F5运行即可,可能会等待较长时间。

如果需要破解VBA工程密码,需要将xlsm文件另存为xls文件,具体参考以下链接

https://blog.csdn.net/Q215046120/article/details/89964817

VBA精彩代码分享-1的更多相关文章

  1. VBA精彩代码分享-3

    在开发VBA程序中,我们可能会需要用代码处理VBA工程,包括启用VBA工程访问,启用所有宏,动态插入代码,动态删除代码,动态添加引用和自动创建模块等等,本次的分享内容便以这些为主. 启用VBA工程访问 ...

  2. VBA精彩代码分享-4

    VBA设置/取消工作簿共享是很常用的一个功能,那么如何用代码实现呢? 设置共享 Then MsgBox "文件没有保存" Exit Sub End If Application.D ...

  3. VBA精彩代码分享-2

    VBA开发中经常需要提示消息框,如果不关闭程序就会暂时中断,这里分享下VBA如何实现消息框的自动关闭,总共有三种方法: 第一种方法 Public Declare Function MsgBoxTime ...

  4. JAVA基础代码分享--求圆面积

    问题描述 用户输入圆的半径,计算并显示圆的面积 代码分享 /** * @author hpu-gs * 2015/11/25 */ public class Circle { public stati ...

  5. JAVA基础代码分享--DVD管理

    问题描述 为某音像店开发一个迷你DVD管理器,最多可存6张DVD,实现碟片的管理. 管理器具备的功能主要有: 1.查看DVD信息. 菜单选择查看功能,展示DVD的信息. 2.新增DVD信息 选择新增功 ...

  6. JAVA基础代码分享--学生成绩管理

    问题描述: 从键盘读入学生成绩,找出最高分,并输出学生成绩等级. 成绩>=最高分-10  等级为’A’   成绩>=最高分-20  等级为’B’ 成绩>=最高分-30  等级为’C’ ...

  7. jQuery插件库代码分享 - 进阶者系列 - 学习者系列文章

    这些天将原来在网上找的jQuery插件进行了下整理,特此将代码分享出来给大家. 见下图结构. 对目录结构进行了分类.这里是插件列表. 这里总共收集了20来个插件.还有下面未进行划分的. 下面是DEMO ...

  8. .net之工作流工程展示及代码分享(四)主控制类

    现在应该讲主控制类了,为了不把系统弄得太复杂,所以就用一个类作为主要控制类(服务类),作为前端.后端.业务逻辑的控制类. WorkflowService类的类图如下: 该类的构造函数: public ...

  9. .net之工作流工程展示及代码分享(三)数据存储引擎

    数据存储引擎是本项目里比较有特色的模块. 特色一,使用接口来对应不同的数据库.数据库可以是Oracle.Sqlserver.MogoDB.甚至是XML文件.采用接口进行对应: public inter ...

随机推荐

  1. [go]template使用

    //index.html {{if gt .Age 18}} <p>hello, old man, {{.Name}}</p> {{else}} <p>hello, ...

  2. ColorDrawable

    最简单的一种Drawable,当我们将ColorDrawable绘制到Canvas(画布)上的时候, 会使用一种固定的颜色来填充Paint,然后在画布上绘制出一片单色区域! 1).Java中定义Col ...

  3. wangEditor编辑器控件里textarea的id不要用content

    头引用 <script type="text/javascript" src="js/jquery-1.10.2.min.js"></scri ...

  4. hdfs操作命令

    文件操作命令:hdfs dfs -ls /hdfs dfs -mkdir /hdfs dfs -rm -rf /hdfshdfs dfs -duhdfs dfs -get /hdfs /localhd ...

  5. 在本地环境(mac)启用https

    前段时间客户一个涉及地理定位功能的页面突然出问题不能正常使用,在修复的过程中发现定位的方法 getCurrentPosition 只能在 https 协议下才能成功调用,这导致我在本地不能调试,每次修 ...

  6. dp[2019.5.25]_2

    1.对于长度相同的2个字符串A和B,其距离定义为相应位置字符距离之和.2个非空格字符的距离是它们的ASCII码之差的绝对值.空格与空格的距离为0,空格与其他字符的距离为一定值k. 在一般情况下,字符串 ...

  7. composer全量镜像使用方法

    原文网址:https://pkg.phpcomposer.com/ Packagist 镜像使用方法 还没安装 Composer 吗?请往下看如何安装 Composer . 镜像用法 有两种方式启用本 ...

  8. JKD1.8新特性

    1.Optional类 Optional是jdk1.8引入的类型,Optional是一个容器对象,它包括了我们需要的对象,使用isPresent方法判断所包 含对象是否为空,isPresent方法返回 ...

  9. 事理学神器PDCA

    做事情都按PDCA循环来做,基本就是一个靠谱的人. 这个方法论其实也符合架构师的思维中的分治理论.把大事拆分成一件件小事,并把小事做好. Plan Do Check Action

  10. 教你用免费的hihttps开源WEB应用防火墙阻止暴力破解密码

    教你用免费的hihttps开源WEB应用防火墙阻止暴力破解密码 很多企业都有自己的网站,需要用户登录后才能访问,但有大量的黑客攻击软件可以暴力破解网站密码,即使破解不了也非常恶心.有没有免费的解决办法 ...