超好用的智能文本框通用函数
时 间: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)
- 统计当月之前(不含当月)的记录...(03.11)
- 【Access Inputbo...(03.03)
- 按回车键后光标移动到下一条记录...(02.12)
- 【Access Dsum示例】...(02.07)
- Access对子窗体的数据进行...(02.05)
- 【Access高效办公】上月累...(01.09)
- 【Access高效办公】上月累...(01.06)
- 【Access Inputbo...(12.23)
- 【Access Dsum示例】...(12.16)

学习心得
最新文章
- 仓库管理实战课程(9)-开发往来单...(04.02)
- 仓库管理实战课程(8)-商品信息功...(04.01)
- 仓库管理实战课程(7)-链接表(03.31)
- 仓库管理实战课程(6)-创建查询(03.29)
- 仓库管理实战课程(5)-字段属性(03.27)
- 设备装配出入库管理系统;基于Acc...(03.24)
- 仓库管理实战课程(4)-建表操作(03.22)
- 仓库管理实战课程(3)-需求设计说...(03.19)
- 仓库管理实战课程(2)-软件背景和...(03.18)
- 仓库管理实战课程(1)-讲师介绍(03.16)