以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  如何判断datarow是否是空的  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=42332)

--  作者:longtechwj
--  发布时间:2013/11/8 16:19:00
--  如何判断datarow是否是空的
如何判断datarow是否是空的
--  作者:Bin
--  发布时间:2013/11/8 16:24:00
--  
判断Datarow是否为空可以 使用    

 dim dr as datarow
if dr is nothing then
 messagebox.show("这个Datarow是空的")
end if




--  作者:longtechwj
--  发布时间:2013/11/8 16:27:00
--  
If r Is Nothing=False Then
r(str)=dr("Plan_Qty")
End If
谢谢