怎么判断ListView控件里内容不为空??
怎么判断ListView控件里内容不为空??
以下是引用bczgvip在2010-2-3 18:27:58的发言:
if ListView1.listitems.count >0 then
'有数据
else
'空
endif
谢谢。。刚好自己也找到 答案。。结贴了..本想暂停分的。没想到这个快回答了。。还是谢谢。if ListView1.listitems.count >0 then
'有数据
else
'空
endif
if ListView.ListItems.Count = 0 then
msgbox "空"
end if