会员登录 - 用户注册 - 网站地图 Office中国(office-cn.net),专业Office论坛
当前位置:主页 > 技巧 > Access技巧 > 行业应用 > 正文

选取录入高频使用词条

时间:2004-11-23 11:44 来源:Office中国/Access中国 作者: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

相关讨论贴子:
http://www.office-cn.net/bbs/dispbbs.asp?BoardID=3&ID=19273

tmtony评:很有新意:)


 

(责任编辑:admin)

顶一下
(0)
0%
踩一下
(0)
0%
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
评价: