CorelVBA.bas 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. #If VBA7 Then
  2. Private Declare PtrSafe Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
  3. Private Declare PtrSafe Function DrawMenuBar Lib "user32" (ByVal Hwnd As Long) As Long
  4. Private Declare PtrSafe Function GetWindowLong Lib "user32" Alias "GetWindowLongA" (ByVal Hwnd As Long, ByVal nIndex As Long) As Long
  5. Private Declare PtrSafe Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal Hwnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
  6. Private Declare PtrSafe Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
  7. Private Declare PtrSafe Function GetSystemMetrics Lib "user32" (ByVal nIndex As Long) As Long
  8. #Else
  9. Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal Hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
  10. Private Declare Function DrawMenuBar Lib "user32" (ByVal Hwnd As Long) As Long
  11. Private Declare Function GetWindowLong Lib "user32" Alias "GetWindowLongA" (ByVal Hwnd As Long, ByVal nIndex As Long) As Long
  12. Private Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal Hwnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long
  13. Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
  14. Private Declare Function GetSystemMetrics Lib "user32" (ByVal nIndex As Long) As Long
  15. #End If
  16. Private Const GWL_STYLE As Long = (-16)
  17. Private Const GWL_EXSTYLE = (-20)
  18. Private Const WS_CAPTION As Long = &HC00000
  19. Private Const WS_EX_DLGMODALFRAME = &H1&
  20. Private switch As Boolean
  21. Private Sub Close_Icon_Click()
  22. Unload Me ' 关闭
  23. End Sub
  24. Private Sub ToolBar_show_Click()
  25. Unload Me
  26. ToolBar.Show 0
  27. End Sub
  28. Private Sub UserForm_Initialize()
  29. Dim IStyle As Long
  30. Dim Hwnd As Long
  31. Hwnd = FindWindow("ThunderDFrame", Me.Caption)
  32. IStyle = GetWindowLong(Hwnd, GWL_STYLE)
  33. IStyle = IStyle And Not WS_CAPTION
  34. SetWindowLong Hwnd, GWL_STYLE, IStyle
  35. DrawMenuBar Hwnd
  36. IStyle = GetWindowLong(Hwnd, GWL_EXSTYLE) And Not WS_EX_DLGMODALFRAME
  37. SetWindowLong Hwnd, GWL_EXSTYLE, IStyle
  38. With Me
  39. ' .StartUpPosition = 0
  40. ' .Left = 500
  41. ' .Top = 200
  42. .Width = 385.5
  43. .Height = 271.45
  44. End With
  45. End Sub
  46. Private Sub LOGO_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal x As Single, ByVal y As Single)
  47. If Button Then
  48. mX = x
  49. mY = y
  50. End If
  51. End Sub
  52. Private Sub LOGO_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal x As Single, ByVal y As Single)
  53. If Button Then
  54. Me.Move Me.Left - mX + x, Me.TOP - mY + y
  55. End If
  56. End Sub
  57. Private Sub CommandButton1_Click()
  58. MsgBox "请给我支持!" & vbNewLine & "您的支持,我才能有动力添加更多功能." & vbNewLine & "蘭雅CorelVBA青年节版公测" & vbNewLine & "coreldrawvba插件交流群 8531411"
  59. End Sub
  60. Private Sub UI_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal x As Single, ByVal y As Single)
  61. ' 定义图标坐标pos
  62. Dim pos_x As Variant
  63. Dim pos_y As Variant
  64. pos_x = Array(32, 110, 186, 265, 345)
  65. pos_y = Array(50, 135, 215)
  66. If Abs(x - pos_x(0)) < 30 And Abs(y - pos_y(0)) < 30 Then
  67. 物件角线
  68. ElseIf Abs(x - pos_x(1)) < 30 And Abs(y - pos_y(0)) < 30 Then
  69. 绘制矩形
  70. ElseIf Abs(x - pos_x(2)) < 30 And Abs(y - pos_y(0)) < 30 Then
  71. 角线爬虫
  72. ElseIf Abs(x - pos_x(3)) < 30 And Abs(y - pos_y(0)) < 30 Then
  73. 矩形拼版
  74. ElseIf Abs(x - pos_x(4)) < 30 And Abs(y - pos_y(0)) < 30 Then
  75. 拼版角线
  76. End If
  77. If Abs(x - pos_x(0)) < 30 And Abs(y - pos_y(1)) < 30 Then
  78. Tools.居中页面
  79. ElseIf Abs(x - pos_x(1)) < 30 And Abs(y - pos_y(1)) < 30 Then
  80. 拼版标记
  81. ElseIf Abs(x - pos_x(2)) < 30 And Abs(y - pos_y(1)) < 30 Then
  82. 智能群组
  83. ElseIf Abs(x - pos_x(3)) < 30 And Abs(y - pos_y(1)) < 30 Then
  84. CQL选择
  85. ElseIf Abs(x - pos_x(4)) < 30 And Abs(y - pos_y(1)) < 30 Then
  86. 批量替换
  87. End If
  88. If Abs(x - pos_x(0)) < 30 And Abs(y - pos_y(2)) < 30 Then
  89. Tools.尺寸取整
  90. ElseIf Abs(x - pos_x(1)) < 30 And Abs(y - pos_y(2)) < 30 Then
  91. Tools.TextShape_ConvertToCurves
  92. ElseIf Abs(x - pos_x(2)) < 30 And Abs(y - pos_y(2)) < 30 Then
  93. Dim h As Long, r As Long
  94. mypath = Path & "GMS\262235.xyz\"
  95. app = mypath & "GuiAdobeThumbnail.exe"
  96. h = FindWindow(vbNullString, "CorelVBA 青年节 By 蘭雅sRGB")
  97. i = ShellExecute(h, "", app, "", mypath, 1)
  98. ElseIf Abs(x - pos_x(3)) < 30 And Abs(y - pos_y(2)) < 30 Then
  99. If switch Then
  100. switch = Not switch
  101. Tools.傻瓜火车排列
  102. Else
  103. switch = Not switch
  104. Tools.傻瓜阶梯排列
  105. End If
  106. ElseIf Abs(x - pos_x(4)) < 30 And Abs(y - pos_y(2)) < 30 Then
  107. 学习CorelVBA实验室
  108. End If
  109. If Abs(x - 210) < 30 And Abs(y - 261) < 8 Then
  110. WebHelp "https://262235.xyz/index.php/tag/vba/"
  111. End If
  112. End Sub
  113. Function WebHelp(url As String)
  114. Dim h As Long, r As Long
  115. h = FindWindow(vbNullString, "CorelVBA 青年节 By 蘭雅sRGB")
  116. r = ShellExecute(h, "", url, "", "", 1)
  117. End Function
  118. Private Sub 绘制矩形()
  119. 剪贴板尺寸建立矩形.start
  120. End Sub
  121. Private Sub 角线爬虫()
  122. 裁切线.SelectLine_to_Cropline
  123. End Sub
  124. Private Sub 矩形拼版()
  125. 拼版裁切线.arrange
  126. End Sub
  127. Private Sub 批量替换()
  128. CorelVBA.Hide
  129. Replace_UI.Show 0
  130. End Sub
  131. Private Sub 拼版标记()
  132. 自动中线色阶条.Auto_ColorMark
  133. End Sub
  134. Private Sub 拼版角线()
  135. 拼版裁切线.Cut_lines
  136. End Sub
  137. Private Sub 物件角线()
  138. 裁切线.start
  139. End Sub
  140. Private Sub 智能群组()
  141. 智能群组和查找.智能群组
  142. End Sub
  143. Private Sub CQL选择()
  144. CorelVBA.Hide
  145. CQL_FIND_UI.Show 0
  146. End Sub
  147. Private Sub 学习CorelVBA实验室()
  148. CorelVBA.Hide
  149. ' 调用语句
  150. i = GMSManager.RunMacro("CorelDRAW_VBA", "学习CorelVBA.start")
  151. End Sub