首页 > 开发 > 综合 > 正文

access 如何解决组合框无法满足大量数据的选择问题?

2024-07-21 02:09:31
字体:
来源:转载
供稿:网友


如何解决组合框无法满足大量数据的选择问题?

 

 

问题:

access里面有组合框,可以很快地从多行记录中选择所需要的数据。但是如果记录超过1000-2000呢?选择就非常不方便了。我该怎么办?
 




回答:


其实很多数据都可以分类(分层)来选择,而且我们可以预先筛选数据。
以下这个示例就是用重复打开同一个窗体类来完成多层次数据的选择。
当然,还包括预先筛选数据功能。


在阅读本文前请先参考:
《新手来看:如何设计表结构便于treeview显示?》
http://access911.net/index.asp?board=4&recordid=75fabe1e12dc
一文,以了解如何定义数据表结构可以方便的分类并显示。

并阅读:
《如何将一个窗体重复打开2遍,并且每一遍打开的窗体显示不同的数据?》
http://access911.net/index.asp?board=4&recordid=72fab11e15dc
一文,以了解 access 中一个 form 其实就是一个类

好了,现在开始:
1、建立一个窗体(testform),里面有一个文本框(text0),一个按钮(command2)。
2、建立一个窗体(selectform),里面有一个列表框(list0)。
3、在testform中的文本框的“更新后”事件中写入以下代码以打开品名选择窗体(selectform),并对其中的列表框(list0)的行来源(rowsource)进行赋值。
private sub text0_afterupdate()
    docmd.openform "selectform"
    '这行代码就实现了btype表的模糊检索,使用的是 where 子句中的 like 关键字进行通配
    forms("selectform").list0.rowsource = "select btype.soncount, btype.usercode, btype.fullname, btype.typeid from btype where btype.fullname like '*" & text0.value & "*' "
end sub

4、在testform中的命令按钮的“单击”事件中写入以下代码以打开品名选择窗体,按分类检索
5、然后再在testform中输入以下代码以完成多次打开窗体本身并显示子类中数据的功能。
为了能够使代码重复利用,写了两个通用过程

option compare database
dim f


private sub form_keydown(keycode as integer, shift as integer)
    '先设定窗体的“键预览”属性为“是”
    '本过程将加快你的输入速度
    '如果按 escape 键,就关闭窗体
    if keycode = vbkeyescape then
        closeallselectform "selectform"
    end if
end sub

private sub list0_dblclick(cancel as integer)
    checkyouselect
end sub

private sub list0_keypress(keyascii as integer)
    '本过程实现全键盘操作
    if keyascii = 13 then
        checkyouselect
    end if
end sub

sub closeallselectform(strformname as string)
    '通用过程1
    '本过程用来关闭所有的指定名称的窗体
    for each objform in forms
        if objform.name = strformname then
            docmd.close acform, objform.name
        end if
    next objform
end sub

sub checkyouselect()
    '通用过程2
    '检测你的选择
    '如果发现 suncount 列为 0(表示没有下一层了)
    '就可以把你选定的产品名称放到文本框中了
    on error resume next
    set f = new form_selectform
    dim objform as form
    if list0.column(0) = 0 then
        forms("testform").text0.value = list0.column(2)
        closeallselectform "selectform"
    else
        f.visible = true
        f.list0.rowsource = "select btype.soncount, btype.usercode, btype.fullname, btype.typeid from btype where parid='" & list0.value & "'"
    end if
end sub



详细示例程序请参考:
http://www.access911.net/index.asp?board=8&recordid=77fab71e


 




http://access911.net 站长收藏
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表