超好用的智能文本框通用函数
时 间:2008-08-21 21:47:12
作 者:Trynew ID:2645 城市:广州
摘 要:为了庆祝奥运开幕,特推出最新特价的“超好用的智能文本框通用函数”例程。
正 文:
功能:
1、用法简单,任何文本框、组合框的“键释放”事件中使用此函数,即可带有智能辅助和选择录入此字段已有的记录中的文本。
2、极大加块了录入速度,比组合框快X倍。
代码:
Public Function GetFieldValue(Optional KeyCode As Integer = 1000)
'MsgBox KeyCode
On Error Resume Next
If KeyCode = 8 or KeyCode = 46 Then Exit Function
Dim i As Integer, txtSet As TextBox, intMax As Integer
Set txtSet = Screen.ActiveControl
i = txtSet.SelStart
If KeyCode = 40 Then
With Screen.ActiveForm.RecordsetClone
Do While Not .EOF()
.MoveNext
If Left(.Fields(txtSet.ControlSource), i) = Left(txtSet.Text, i) Then
txtSet.Text = .Fields(txtSet.ControlSource)
txtSet.Tag = txtSet.Text
txtSet.SelStart = i
txtSet.SelLength = Len(txtSet.Text)
Exit Do
End If
intMax = intMax + 1
If intMax > 10000 Then Exit Do
Loop
End With
Exit Function
End If
If KeyCode = 38 Then
With Screen.ActiveForm.RecordsetClone
Do While Not .BOF()
.MovePrevious
If Left(.Fields(txtSet.ControlSource), i) = Left(txtSet.Text, i) Then
txtSet.Text = .Fields(txtSet.ControlSource)
txtSet.Tag = txtSet.Text
txtSet.SelStart = i
txtSet.SelLength = Len(txtSet.Text)
Exit Do
End If
intMax = intMax + 1
If intMax > 10000 Then Exit Do
Loop
End With
Exit Function
End If
If txtSet.SelStart = Len(txtSet.Text) Then
If Left(Nz(txtSet.Tag), i) = txtSet.Text Then
txtSet.Text = txtSet.Tag
txtSet.SelStart = i
txtSet.SelLength = Len(txtSet.Text)
Else
With Screen.ActiveForm.RecordsetClone
.MoveFirst
Do While Not .EOF()
If Left(.Fields(txtSet.ControlSource), i) = txtSet.Text Then
txtSet.Text = .Fields(txtSet.ControlSource)
txtSet.Tag = txtSet.Text
txtSet.SelStart = i
txtSet.SelLength = Len(txtSet.Text)
Exit Do
End If
intMax = intMax + 1
If intMax > 10000 Then Exit Do
Loop
End With
Exit Function
End If
If KeyCode = 38 Then
With Screen.ActiveForm.RecordsetClone
Do While Not .BOF()
.MovePrevious
If Left(.Fields(txtSet.ControlSource), i) = Left(txtSet.Text, i) Then
txtSet.Text = .Fields(txtSet.ControlSource)
txtSet.Tag = txtSet.Text
txtSet.SelStart = i
txtSet.SelLength = Len(txtSet.Text)
Exit Do
End If
intMax = intMax + 1
If intMax > 10000 Then Exit Do
Loop
End With
Exit Function
End If
If txtSet.SelStart = Len(txtSet.Text) Then
If Left(Nz(txtSet.Tag), i) = txtSet.Text Then
txtSet.Text = txtSet.Tag
txtSet.SelStart = i
txtSet.SelLength = Len(txtSet.Text)
Else
With Screen.ActiveForm.RecordsetClone
.MoveFirst
Do While Not .EOF()
If Left(.Fields(txtSet.ControlSource), i) = txtSet.Text Then
txtSet.Text = .Fields(txtSet.ControlSource)
txtSet.Tag = txtSet.Text
txtSet.SelStart = i
txtSet.SelLength = Len(txtSet.Text)
Exit Do
End If
intMax = intMax + 1
If intMax > 10000 Then Exit Do
.MoveNext
Loop
End With
End If
End If
End Function
用法:
在“键释放”事件中使用
Private Sub 姓名_KeyUp(KeyCode As Integer, Shift As Integer)
GetFieldValue KeyCode
End Sub
智能文本框:你可以在新记录的姓名字段中,输入“李”字,则字段中会自动出现反黑选定的“应”字,你可以用上下键更换此表已有姓名中的其它候选名字,也可以继续输入,或者回车(TAB)键转到其他字段。此函数有一个可选参数,放在“键释放”事件中,不带参数则屏蔽上下键选择功能。
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.22)
- 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)