以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 代码表示大于小于 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=62504) |
-- 作者:xiaofan513 -- 发布时间:2015/1/3 13:05:00 -- 代码表示大于小于 示例,如果要通过代码表示数据表库龄的值在60与90之间! if e.cols.name = "库龄" then if e.row.isnull("库龄") = FALSE then if e.row(“库龄”) 如何表达这个库存在某一个时间段,而非一个单列的时间段,他是在60-90之间,而非统一的一个数值!
|
-- 作者:czy -- 发布时间:2015/1/3 13:58:00 -- If e.Col.name = "库龄" Then If e.Row.isnull("库龄") = False Then If e.Row("库龄") >= 60 AndAlso e.Row("库龄") <= 90 M\'你想进行的操作 End If End If End If
|