ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 323|回复: 4

[求助] VBA代码只能在sheet表使用,模块上使用不了

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-1-19 13:46 | 显示全部楼层 |阅读模式
路过的大神帮帮忙!帮我看一下为什么我图片预览的代码可以在sheet表中使用,但是放置在模块中就使用不了了,我想可以适用于全部工作表的

图片预览.zip

15.36 KB, 下载次数: 4

TA的精华主题

TA的得分主题

发表于 2024-1-19 13:52 | 显示全部楼层
表格打不开

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-1-19 13:58 | 显示全部楼层

不好意思,公司有excel密码保护,我发一下代码给你看一下
Option Explicit

Dim EnablePreview As Boolean

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Dim selectedProductCode As String
    Dim picturePath As String
    Dim previewPicture As Picture

    ' Check if the preview is enabled
    If EnablePreview Then
        ' Check if the selected cell is in the first column (商品代码列)
        If Target.Column = 1 Then
            ' Get the product code from the selected cell
            selectedProductCode = CStr(Target.Value)

            ' Disable events
            Application.EnableEvents = False

            ' Assume the picture path corresponds to the product code
            picturePath = GetPicturePath(selectedProductCode)

            ' Delete the previous preview picture (if it exists)
            DeletePreviewPicture

            ' Insert a new preview picture
            Set previewPicture = Me.Pictures.Insert(picturePath)
            With previewPicture
                .Top = Target.Top
                .Left = Target.Offset(0, 1).Left ' Display the picture in the adjacent column
                .Width = 100
                .Height = 100
                .Name = "PreviewPicture" ' Set the picture name for later deletion
            End With

            ' Enable events
            Application.EnableEvents = True
        End If
    End If
End Sub

Function GetPicturePath(productCode As String) As String
    ' Assume pictures are stored in a folder named "ProductImages"
    Dim pictureFolder As String
    pictureFolder = "E:\图片\新建文件夹\"

    ' Build the complete picture path
    GetPicturePath = pictureFolder & productCode & ".jpg"
End Function

Sub DeletePreviewPicture()
    ' Delete the picture named "PreviewPicture"
    On Error Resume Next
    Me.Shapes("PreviewPicture").Delete
    On Error GoTo 0
End Sub

' Toggle the EnablePreview variable to enable or disable the preview
Sub TogglePreview()
    EnablePreview = Not EnablePreview
End Sub


TA的精华主题

TA的得分主题

 楼主| 发表于 2024-1-19 13:58 | 显示全部楼层
Option Explicit

Dim EnablePreview As Boolean

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Dim selectedProductCode As String
    Dim picturePath As String
    Dim previewPicture As Picture

    ' Check if the preview is enabled
    If EnablePreview Then
        ' Check if the selected cell is in the first column (商品代码列)
        If Target.Column = 1 Then
            ' Get the product code from the selected cell
            selectedProductCode = CStr(Target.Value)

            ' Disable events
            Application.EnableEvents = False

            ' Assume the picture path corresponds to the product code
            picturePath = GetPicturePath(selectedProductCode)

            ' Delete the previous preview picture (if it exists)
            DeletePreviewPicture

            ' Insert a new preview picture
            Set previewPicture = Me.Pictures.Insert(picturePath)
            With previewPicture
                .Top = Target.Top
                .Left = Target.Offset(0, 1).Left ' Display the picture in the adjacent column
                .Width = 100
                .Height = 100
                .Name = "PreviewPicture" ' Set the picture name for later deletion
            End With

            ' Enable events
            Application.EnableEvents = True
        End If
    End If
End Sub

Function GetPicturePath(productCode As String) As String
    ' Assume pictures are stored in a folder named "ProductImages"
    Dim pictureFolder As String
    pictureFolder = "E:\图片\新建文件夹\"

    ' Build the complete picture path
    GetPicturePath = pictureFolder & productCode & ".jpg"
End Function

Sub DeletePreviewPicture()
    ' Delete the picture named "PreviewPicture"
    On Error Resume Next
    Me.Shapes("PreviewPicture").Delete
    On Error GoTo 0
End Sub

' Toggle the EnablePreview variable to enable or disable the preview
Sub TogglePreview()
    EnablePreview = Not EnablePreview
End Sub


这是代码,表格因为公司加密  打不开

TA的精华主题

TA的得分主题

发表于 2024-1-19 17:07 | 显示全部楼层

这个代码是必须放在sheet表中的,只有sheet表中有这个代码,才能触发对应的事件
image.png


建议你在每个sheet表中都加入:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
call 图片预览程序
end sub

而 “图片预览程序”,你要从那些代码中分离出来,放在模块中编写为独立的程序,需要时再调用即可
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-19 05:30 , Processed in 0.029335 second(s), 11 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表