查看Excel的源码_excel的查看代码

hacker|
117

文章目录:

excel查看按钮源码

如果代码未加密,按ALT+F11,点"视图"-"工程资源管理器",就可以看到所有代码了.

excel怎么看vba源代码

按ALT+F11,可以进入VBE编辑界面。

或者功能区按钮,可参考:

Excel-VBA基础(1):如何在菜单栏显示“开发工具”

别人用excel表格做的管理系统怎么查看此管理系统的源码?

新建excel文件,alt+F11进入VBA编辑器,插入模块,输入以下代码:

Sub MoveProtect()

Dim FileName As String

 FileName = Application.GetOpenFilename("Excel文件(*.xls *.xla),*.xls;*.xla", , "VBA破解")

 If FileName = CStr(False) Then

    Exit Sub

 Else

    VBAPassword FileName, False   '  引用下面的自定义函数

 End If

End Sub

Private Function VBAPassword(FileName As String, Optional Protect As Boolean = False)

   If Dir(FileName) = "" Then

      Exit Function

   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 Function

   End If

   If Protect = False Then

      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, "提示"

   Else

      Dim MMs As String * 5

      MMs = "DPB="""

      Put #1, CMGs, MMs

      MsgBox "对文件特殊加密成功......", 32, "提示"

   End If

   Close #1

End Function

2. 运行上面的代码,选择你的文件,移除密码成功后打开文件,按alt+F11查看源码:

怎么从excel表格里提取源代码?

提取方法如下:

    Dim strText$

    Dim httpRequest As Object

    Dim myClip As Object

    '剪贴板对象

    Set myClip = CreateObject("new:{1C3B4210-F441-11CE-B9EA-00AA006B1A69}")

    Set httpRequest = CreateObject("Msxml2.XMLHTTP.3.0")

    With httpRequest

        .Open "GET", 网址, False

        .send

        strText = .responseText

    End With

    With myClip

        '网页原始数据放入剪贴板中

        .SetText strText    '变量

        .PutInClipboard

        MsgBox "源代码已经复制到剪贴板中"

    End With

2条大神的评论

  • avatar
    访客 2022-07-08 上午 02:50:46

    etText strText    '变量        .PutInClipboard        MsgBox "源代码已经复制到剪贴板中"    End With

  • avatar
    访客 2022-07-08 上午 11:08:53

    Exit Function    End If    If Protect = False Then       Dim St As String * 2       Dim s20 As String * 1

发表评论