组合框实现下拉模糊查询,改进版,简单快捷(全代码:粘贴即可使用)
时 间:2015-10-29 17:42:24
作 者:小英 ID:23698 城市:河池
摘 要:据前人的代码改进了下,只需要在keyup 事件填写就可以了,支持首字母查询,代码简单,快捷,方便,粘贴即可使用,不用修改任何字段名称
正 文:
'**************************************************************************************************************
'当前窗体中同一控件类型(文本框:acTextBox;组合框:acComboBox;命令按钮:acCommandButton)的批量组合框自动下拉
'用法: 在窗体加载事件中写入以下代码 (OnGotFocus获得焦点时下拉)
Dim ctrl As Control
For Each ctrl In Me.Controls
If ctrl.ControlType = acComboBox Then ctrl.OnChange = "=AutoDropDown定期检查()"
Next
'*************************************************************************************************************
Public Function AutoDropDown定期检查()
Dim h As String
Dim A As String
Dim AA As String
Dim sq As String
A = Me.RecordSource '默认当前窗口记录源名称:
' A = "tbl定期检查" '自己指定表名: tbl定期检查"
' MsgBox A, vbInformation
AA = A & "." & Me.ActiveControl.Name
' MsgBox AA, vbInformation
h = "*" & Me.ActiveControl.Text & "*"
' MsgBoxEx h, vbInformation
If IsNull(Me.ActiveControl) Then
sq = "select distinct " & AA & " from " & A & ""
Else
sq = "select distinct " & AA & " from " & A & " where ((((" & AA & ") like '" & h & "')))"
End If
' MsgBox sq, vbInformation
Me.ActiveControl.RowSource = sq
Me.ActiveControl.Dropdown
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快速开发平台企业版--...(11.18)
- 不会用多表联合查询,多表查询没结果...(11.16)
- 【案例分享】主键字段值含有不间断空...(11.16)
- Access快速开发平台--后台D...(11.14)
- 微软Access邀测新Monaco...(11.12)
- Access列表框左右互选、列表框...(11.11)
- 高效率在导入数据前删除记录(11.10)
- Access报价单转订单示例代码(11.08)
- Access系统自带的日期选择器不...(11.08)
- 分享一下Access工程中的acw...(11.07)