Rss & SiteMap

Foxtable(狐表) http://www.foxtable.com

新一代数据库软件,完美融合Access、Foxpro、Excel、vb.net之优势,人人都能掌握的快速软件开发工具!
共7 条记录, 每页显示 10 条, 页签: [1]
[浏览完整版]

标题:Combox问题

1楼
forwork 发表于:2009/7/1 16:59:00
 我在页面上设置4个combox,通过这4个combox的值来实现查询表。最后表显示筛选出的信息!可以只在一个combox里输入内容查询,也可以多个。请问怎么实现......
2楼
狐狸爸爸 发表于:2009/7/1 17:02:00
参考:

开发篇 - 窗口设计 - 其他 - 一个例子

3楼
shxiaoya 发表于:2009/7/1 17:03:00
Dim Filter As String
With
e.Form.Controls("combox1")
    If
.Value IsNot Nothing Then
        Filter =
"产品 = '" & .Value & "'"
   
End If
End
With
With
e.Form.Controls("combox2")
    If
.Value IsNot Nothing Then
        If
Filter > "" Then
            Filter = Filter &
" And "
   
    End If
        Filter = Filter &
"客户 = '" & .Value & "'"
   
End If
End
With
With
e.Form.Controls("combox3")
    If
.Value IsNot Nothing Then
        If
Filter >"" Then
            Filter = Filter &
" And "
       
End If
        Filter = Filter &
"雇员 = '" & .Value & "'"
   
End If
End
With
With
e.Form.Controls("combox4")
    If
.Value IsNot Nothing Then
        If
Filter >"" Then
            Filter = Filter &
" And "
       
End If
        Filter = Filter &
"日期 = #" & .Value & "#"
   
End If
End
With
If Filter > "" Then
    Tables
("订单").Filter = Filter
End
If
4楼
forwork 发表于:2009/7/1 17:06:00
谢谢!!!
5楼
blackzhu 发表于:2009/7/2 8:31:00
以下是引用forwork在2009-7-1 16:59:00的发言:
 我在页面上设置4个combox,通过这4个combox的值来实现查询表。最后表显示筛选出的信息!可以只在一个combox里输入内容查询,也可以多个。请问怎么实现......

看yang版的模糊查询,利用一个combox就可以解决问题了.

6楼
kylin 发表于:2009/7/2 8:33:00
多个有多个的好处,直观明了
7楼
yangming 发表于:2009/7/2 8:39:00
各取所需,呵呵
共7 条记录, 每页显示 10 条, 页签: [1]

Copyright © 2000 - 2018 foxtable.com Tel: 4000-810-820 粤ICP备11091905号

Powered By Dvbbs Version 8.3.0
Processed in .02344 s, 2 queries.