如何判断text内的内容为空?
有text1,text2,text3,text4,text5....text16。应该有两种方法判断,一种是一个一个列举,if text1.text="" and text2.text="" ..then关于这种方法,我要问的是换行时应改怎么写代码。第二种方法是有数组循环判断,呵呵,但是我不会写代码,有没有高人讲解一些这两种方法?
dim i
for i = 1 to 16
if text&i="" then
text&i.setfocus
exit sub
end if
next i