找出重复项,标记红色
时 间:2018-05-10 21:07:49
作 者:雨泉 ID:39037 城市:金昌
摘 要:重复项
正 文:
今天在网站找到一个比较好的东东,自己研究了一下,现在将我实现的效果和大家分享一下!!
图 示:
具体代码如下:
Dim ctl As Control
Dim rst As DAO.Recordset
Dim str As String
Set rst = Me.sfrList.Form.RecordsetClone
If rst.RecordCount > 0 Then rst.MoveFirst
Do Until rst.EOF
If DCount("*", "TMP_牛群转群日期", "乳牛号='" & rst!乳牛号 & "'") > 1 Then
str = str & "乳牛号='" & rst!乳牛号 & "' or "
End If
rst.MoveNext
Loop
If Len(str) > 0 Then
str = Left(str, Len(str) - 4)
End If
For Each ctl In Me.sfrList.Form
If ctl.ControlType = acTextBox or ctl.ControlType = acComboBox Then
ctl.FormatConditions.Add acExpression, acEqual, 1
ctl.FormatConditions(0).Modify acExpression, , str
ctl.FormatConditions(0).BackColor = vbRed
End If
Next
Access软件网官方交流QQ群 (群号:54525238) Access源码网店
常见问答:
技术分类:
源码示例
- 【源码QQ群号19834647...(12.17)
- Access自定义消息盒Msg...(04.28)
- Access怎么按每个月份里面...(03.09)
- Access怎么按季度来统计人...(02.26)
- Access怎么按年龄段来统计...(01.26)
- 【Access高效办公】上一年...(12.29)
- 用Access连续窗体制作的树...(11.03)
- 【Access高效办公】上一年...(10.30)
- Access制作的RGB转CM...(09.22)
- Access制作的RGB调色板...(09.15)
学习心得
最新文章
- Access自定义消息盒Msgbo...(04.28)
- Access快速开发平台--提示:...(04.23)
- Access快速开发平台--2.6...(04.20)
- 批量插入数据大幅提升速度详解(04.13)
- 如何用VBA代码结合企业微信,给微...(04.11)
- Access直播-TreeView...(04.10)
- Access直播-带您进入ACCE...(04.08)
- Access直播-ADO新增数据(04.03)
- 欢迎来Access直播间学习(03.31)
- Access快速开发平台--待处理...(03.27)



.gif)
