满足条件,改变记录的显示特征
时 间:2015-01-03 21:48:47
作 者:吴俊锋 ID:36923 城市:无锡
摘 要:遇到一个问题,不知道大家是否遇到过。
实现如下的目标,部门为某值时,记录背景显示黄色。功能是实现了,但是出来之后屏幕一直在闪烁。
正 文:
遇到一个问题,不知道大家是否遇到过。
实现如下的目标,部门为某值时,记录背景显示黄色。功能是实现了,但是出来之后屏幕一直在闪烁。
Private Sub Form_Open(Cancel As Integer)
setbackcolor Me.Form, "bm='设计一所' "
End Sub
Private Function setbackcolor(frm As Form, tj As String) As Boolean ‘该函数设置记录特性,从网络中获取,非常感谢!
Dim intCount As Integer
Dim ctl As Control
Dim fcd As FormatCondition
For Each ctl In frm.Controls
If ctl.ControlType = acTextBox Or ctl.ControlType = acComboBox Then
intCount = 0
ctl.FormatConditions.Delete
ctl.FormatConditions.Add acExpression, acEqual, tj
Set fcd = ctl.FormatConditions.Item(intCount)
With fcd
.BackColor = vbYellow '背景黄色 65535
.ForeColor = vbBlack '前景色黑色
' .FontUnderline = True '加下划线
.FontBold = True '加黑
' .FontItalic = True '斜体
End With
End If
Next ctl
setbackcolor = True
Set ctl = Nothing
Set fcd = Nothing
End Function
实现如下的目标,部门为某值时,记录背景显示黄色。功能是实现了,但是出来之后屏幕一直在闪烁。
Private Sub Form_Open(Cancel As Integer)
setbackcolor Me.Form, "bm='设计一所' "
End Sub
Private Function setbackcolor(frm As Form, tj As String) As Boolean ‘该函数设置记录特性,从网络中获取,非常感谢!
Dim intCount As Integer
Dim ctl As Control
Dim fcd As FormatCondition
For Each ctl In frm.Controls
If ctl.ControlType = acTextBox Or ctl.ControlType = acComboBox Then
intCount = 0
ctl.FormatConditions.Delete
ctl.FormatConditions.Add acExpression, acEqual, tj
Set fcd = ctl.FormatConditions.Item(intCount)
With fcd
.BackColor = vbYellow '背景黄色 65535
.ForeColor = vbBlack '前景色黑色
' .FontUnderline = True '加下划线
.FontBold = True '加黑
' .FontItalic = True '斜体
End With
End If
Next ctl
setbackcolor = True
Set ctl = Nothing
Set fcd = Nothing
End Function
Access软件网官方交流QQ群 (群号:54525238) Access源码网店
常见问答:
技术分类:
源码示例
- 【源码QQ群号19834647...(12.17)
- Access对子窗体数据进行批...(10.30)
- 最精简的组合框行来源数据快速输...(10.25)
- Access仿平台的多值选择器...(10.24)
- 【Access日期区间段查询】...(10.22)
- 【Access源码示例】VBA...(10.12)
- Access累乘示例,Acce...(10.09)
- 数值8.88,把整数8去掉,转...(10.08)
- 【Access自定义函数】一个...(09.30)
- 【Access选项卡示例】Ac...(09.09)
学习心得
最新文章
- 【Access IIF函数嵌套示例...(11.26)
- Access快速开发平台--使用组...(11.25)
- Access快速开发平台--对上传...(11.22)
- Access快速开发平台企业版--...(11.18)
- 不会用多表联合查询,多表查询没结果...(11.16)
- 【案例分享】主键字段值含有不间断空...(11.16)
- Access快速开发平台--后台D...(11.14)
- 微软Access邀测新Monaco...(11.12)
- Access列表框左右互选、列表框...(11.11)
- 高效率在导入数据前删除记录(11.10)