设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

返回列表 发新帖
查看: 684|回复: 0
打印 上一主题 下一主题

[与其它组件] 求助阿!!1-紧急阿!-这样的代码该怎么写啊

[复制链接]
跳转到指定楼层
1#
发表于 2006-4-21 18:23:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
Private Sub c1_Click()
On Error GoTo Err_c1_Click
Dim strWheres As String  '定义条件字符串
   
    strWheres = "" '设定初始值-空字符串
    If Not IsNull(Me.xiao) Then
        strWheres = strWheres & "([ " & Str(Me.Combo17) & " ] >= " & Me.xiao & ") AND "
    End If
    If Not IsNull(Me.da) Then
        strWheres = strWheres & "([ " & Str(Me.Combo17) & " ] <= " & Me.da & ")  "
    End If
    DoCmd.DoMenuItem acFormBar, acRecordsMenu, 2, , acMenuVer70
    Me.cxct.Form.Filter = strWhere
    Me.cxct.Form.FilterOn = True
Exit_c1_Click:
    Exit Sub
Err_c1_Click:
    MsgBox Err.DESCRIPTION
    Resume Exit_c1_Click
   
End Sub
红色部分本应改是字段名,但是我想用函数方式表示不知道如何实现请您指点!

我的意思是红色部分本应该是字段名例如:性别、姓名、生日
我做了一个Combo,想利用combo来选择字段名,然后在以下过程中查询,[    ]中应该是字段名但是我想用combo的值代替,我该怎么做

If Not IsNull(Me.xiao) Then
        strWheres = strWheres & "([ " & Str(Me.Combo17) & " ] >= " & Me.xiao & ") AND "
    End If
    If Not IsNull(Me.da) Then
        strWheres = strWheres & "([ " & Str(Me.Combo17) & " ] <= " & Me.da & ")  "
    End If
    DoCmd.DoMenuItem acFormBar, acRecordsMenu, 2, , acMenuVer70
    Me.cxct.Form.Filter = strWhere
    Me.cxct.Form.FilterOn = True

[此贴子已经被作者于2006-4-21 11:16:22编辑过]

分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2024-11-15 09:42 , Processed in 0.093232 second(s), 24 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表