会员登录 - 用户注册 - 网站地图 Office中国(office-cn.net),专业Office论坛
当前位置:主页 > 技巧 > Access技巧 > 编程心得绝招 > 实际编程 > 正文

判断空值或空字符串五法比较

时间:2009-09-12 09:02 来源:网络 作者:江羽 阅读:
1、假定是定义了一个空字符串,那一、二、五方法有效
Dim strN As String
strN = ""
If Trim(strN) = vbNullString Then
    MsgBox "判断空值方法(一)"
End If
 
If Len(strN) = 0 Then
    MsgBox "判断空值方法(二)"
End If
 
If IsNull(strN) Then
    MsgBox "判断空值方法(三)"
End If
 
If strN = Null Then
    MsgBox "判断空值方法(四)"
End If
 
If strN = "" Then
    MsgBox "判断空值方法(五)"
End If
 
2、如果判断文本控件是否输入字符,则方法三有效
 
If Trim(Me.Text1) = vbNullString Then
    MsgBox "判断空值方法(一)"
End If
 
If Len(Me.Text1) = 0 Then
    MsgBox "判断空值方法(二)"
End If
 
If IsNull(Me.Text1) Then
    MsgBox "判断空值方法(三)"
End If
 
If Me.Text1 = Null Then
    MsgBox "判断空值方法(四)"
End If
 
If Me.Text1 = "" Then
    MsgBox "判断空值方法(五)"
End If
如果感兴趣可以自己实际测试一下 

(责任编辑:admin)

顶一下
(2)
100%
踩一下
(0)
0%
发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
评价: