如何判断多个text都不能为空?
如何判断多个text都不能为空?简便一点的,加入有20个text,说有简便的方法?
定义数组.
for i=0 to 19
if text1(i).text = "" then
kun=true
exit for
end if
next i
if kun then
msgbox "第 " & i & " 个text1为空"
end if