VB怎样删除listbox里的空行(也就是说让listbox没有空行)

如题所述

第1个回答  推荐于2016-08-24
检查一遍就可以了

dim n as integer
for n=0 to list.listcount-1
if list.list(n)="" then
list.removeitem n
end if
next n本回答被提问者采纳
相似回答