ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 该vba代码需要双击,如何改为点击就工作? 附源码

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-10-22 20:04 | 显示全部楼层 |阅读模式
本帖最后由 最初的梦想168 于 2024-10-22 21:02 编辑

该vba需要双击,请改为单击就变色了,不要双击。


请老师帮忙看看!谢谢!


Dim colorCycle As Variant
  
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
    ' 检查双击的单元格是否在A1:E1区域内
    If Not Intersect(Target, Me.Range("A1:E1")) Is Nothing Then
        ' 初始化颜色循环(如果尚未初始化)
        If IsEmpty(colorCycle) Then
            colorCycle = Array(RGB(255, 0, 0), RGB(0, 255, 0), RGB(0, 0, 255))
        End If
         
        ' 找到当前颜色的索引并更新为下一个颜色
        Dim currentIndex As Integer
        For currentIndex = LBound(colorCycle) To UBound(colorCycle)
            If Target.Interior.Color = colorCycle(currentIndex) Then
                Exit For
            End If
        Next currentIndex
         
        ' 如果当前索引超出了颜色数组的范围(理论上不应该发生,除非单元格被手动设置了其他颜色)
        ' 则重置为第一个颜色
        If currentIndex > UBound(colorCycle) Then
            currentIndex = LBound(colorCycle)
        End If
         
        ' 应用下一个颜色
        Target.Interior.Color = colorCycle((currentIndex + 1) Mod (UBound(colorCycle) + 1))
         
        ' 取消双击后的默认编辑行为(可选)
        Cancel = True
    End If
End Sub
  
Private Sub Workbook_Open()
    ' 清除任何可能残留的颜色循环变量(虽然在这个特定例子中可能不是必需的,因为每次都会重新初始化)
    colorCycle = Empty
End Sub


TA的精华主题

TA的得分主题

 楼主| 发表于 2024-10-22 20:59 | 显示全部楼层
Dim colorCycle As Variant
  
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
    ' 检查双击的单元格是否在A1:E1区域内
    If Not Intersect(Target, Me.Range("A1:E1")) Is Nothing Then
        ' 初始化颜色循环(如果尚未初始化)
        If IsEmpty(colorCycle) Then
            colorCycle = Array(RGB(255, 0, 0), RGB(0, 255, 0), RGB(0, 0, 255))
        End If
         
        ' 找到当前颜色的索引并更新为下一个颜色
        Dim currentIndex As Integer
        For currentIndex = LBound(colorCycle) To UBound(colorCycle)
            If Target.Interior.Color = colorCycle(currentIndex) Then
                Exit For
            End If
        Next currentIndex
         
        ' 如果当前索引超出了颜色数组的范围(理论上不应该发生,除非单元格被手动设置了其他颜色)
        ' 则重置为第一个颜色
        If currentIndex > UBound(colorCycle) Then
            currentIndex = LBound(colorCycle)
        End If
         
        ' 应用下一个颜色
        Target.Interior.Color = colorCycle((currentIndex + 1) Mod (UBound(colorCycle) + 1))
         
        ' 取消双击后的默认编辑行为(可选)
        Cancel = True
    End If
End Sub
  
Private Sub Workbook_Open()
    ' 清除任何可能残留的颜色循环变量(虽然在这个特定例子中可能不是必需的,因为每次都会重新初始化)
    colorCycle = Empty
End Sub

TA的精华主题

TA的得分主题

发表于 2024-10-23 06:49 | 显示全部楼层

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-10-23 08:01 | 显示全部楼层
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-19 13:31 , Processed in 0.039131 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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