我编了一个程序
for i=1 to 5
a(i)=inputbox(……)
next (意思一下)
现在的问题是,运行时inputbox出现5次,但是我想在他任意一次出现时,退出程序,请问怎么搞啊?
我编了一个程序
for i=1 to 5
a(i)=inputbox(……)
next (意思一下)
现在的问题是,运行时inputbox出现5次,但是我想在他任意一次出现时,退出程序,请问怎么搞啊?
在NEXT 上面加一行:end
'如果输入?就退出
if a(i)="?" then
exit for
end if
‘如果直接回车,不输入任何内容。就退出
if len(a(i))=0 then
exit for
end if
如下,只要你在一个inputbox点击了取消按钮,则后面的inputbox不会出现了
for i=1 to 5
a(i)=inputbox(……)
if len(a(i))=0 then
exit for
end if
next
可以加上随机函数(RND)