1、写一个子程序
sub Allfiter()
dim strwh as string
strwh="True"
if isnull(me.起始日期.value)=false then
strwh=strwh & " and 日期>=#" & me.起始日期.value & "#"
end if
if isnull(me.截止日期.value)=fasle then
strwh=strwh & " and 日期<=#" & me.截止日期.value & "#"
end if
me.阁下的子窗体控件名称.form.filter=strwh
me.阁下的子窗体控件名称.form.filteron=true
end sub
2、在控件的更新后时间中调用该子程序
call Allfilter作者: Henry D. Sy 时间: 2012-5-22 12:57
这样都行吗作者: Henry D. Sy 时间: 2012-5-22 13:05