Access开发培训
网站公告
·Access专家课堂QQ群号:151711184    ·Access快速开发平台下载地址及教程    ·欢迎加入Access专家课堂微信群!    ·如何快速搜索本站文章|示例|资料    
您的位置: 首页 > 技术文章 > 源码示例

选取录入高频使用词条

时 间:2007-12-06 08:35:10
作 者:UMVsoft整理   ID:8  城市:上海  QQ:2851379730点击这里给张志发消息
摘 要:对于某些词语,可能在录入时经常用到,它可能是字段值的其中某一部分,而不适宜于组合框或者列表框,用高频词条选区录入窗,可较好解决此问题。

正 文:

本文引自旧网站上goodidea的一篇帖子 。
对于新手来说,此范例主要用到以下几个知识点:

1.全局的功能键定义。 见附件的 autokeys 宏
2.用Screen.ActiveCtontrol 来得到当前获得焦点的控件,而不必关心他所在窗体。
3.窗体之间的传值,实际上这里相当于控件之间的传值。
4.在文本框的光标处,插入字符。实际上是文本框SelStart和SelLength的应用。只有获得焦点的文本框才有此属性。

点击这里下载

主要功能代码预览:

' 定义公共变量
Public gctlInputCommonuseCalled As Control '调用窗体的控件
Public gintCtlCalledSelStart As Integer '当前光标位置
Public gintCtlCalledSellength As Integer '选取文本长度


'打开高频词选区窗体
Public Function gInputCommonUseString() As String
On Error Resume Next

Const cstrFormName = "frmpubselectIncommonuse"
Const cstrCtlName = "list0"

If Not CurrentProject.AllForms(cstrFormName).IsLoaded Then
'如果窗体是关闭的,那么打开窗体

Set gctlInputCommonuseCalled = Screen.ActiveControl '获取当前控件
If gctlInputCommonuseCalled Is Nothing Then
Exit Function
Else
'写入相关属性到变量
gintCtlCalledSelStart = gctlInputCommonuseCalled.SelStart
gintCtlCalledSellength = gctlInputCommonuseCalled.SelLength

'保存修改,否则可能插入错误值(就是控件的旧值)
DoCmd.RunCommand acCmdSaveRecord

'打开窗体
DoCmd.OpenForm cstrFormName
End If
Else
'否则,窗体是打开的,则返回窗体的值

If IsNull(gctlInputCommonuseCalled.Value) or gctlInputCommonuseCalled.ControlType <> acTextBox Then
'如果控件的值为空,这不是文本框,则直接赋值为选定的词条
gctlInputCommonuseCalled.Value = Forms(cstrFormName).Controls(cstrCtlName).Value
Else
'否则,在光标位置插入选定的词条
gctlInputCommonuseCalled.Value = Left$(gctlInputCommonuseCalled.Value, gintCtlCalledSelStart) & _
Forms(cstrFormName).Controls(cstrCtlName).Value & _
Mid$(gctlInputCommonuseCalled.Value, gintCtlCalledSellength + gintCtlCalledSelStart + 1)
End If

Err.Clear
'关闭窗体
DoCmd.Close acForm, cstrFormName
End If
End Function


Access软件网官方交流QQ群 (群号:483923997)       Access源码网店

常见问答:

技术分类:

相关资源:

专栏作家

关于我们 | 服务条款 | 在线投稿 | 友情链接 | 网站统计 | 网站帮助