以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- ISNULL在代码中如何应用? (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=193142) |
-- 作者:1234567 -- 发布时间:2024/8/21 12:31:00 -- ISNULL在代码中如何应用? Dim S1 As String = ISNULL("长度:" & e.DataRow("长度"), Nothing) 代码如何写? |
-- 作者:有点蓝 -- 发布时间:2024/8/21 13:34:00 -- http://www.foxtable.com/webhelp/topics/0426.htm Dim S1 As String if e.DataRow.isnull("长度")=false S1 = "长度:" & e.DataRow("长度") end if
|