8樓顯示不正常...9樓重寫了...看9樓的...
我覺得我這個沒什麼錯誤...可能你試驗的時候把什麼弄錯了吧
我覺得我這個沒什麼錯誤...可能你試驗的時候把什麼弄錯了吧
这个社会太复杂。。。
這個不行的....要是command1(99).caption <>"1" 循環還是執行完了...i的值也是99...所以得加一個判斷
command1(99)="1"
你的意思是不是必須全部是caption為1才輸出A 要是這樣的話..可以像下面這樣做
for i=0 to 100
if command1(i).caption <> "1" then exit for
if i=100 and command1(100).Caption="1" then print "A" '少写了
怎么看 就这么别扭 原来你写错啦
這個不行的....要是command1(99).caption <>"1" 循環還是執行完了...i的值也是99...所以得加一個判斷
command1(99)="1"
没必要,我刚才是打错了
for i=0 to 100
if command1(i).caption <> "1" then exit for
if i=100 and command1(100).Caption="1" then print "A"
next i
这段代码可以实现 我想要的 判断效果哟 刚刚试过了
判断Command1(0).Caption 到Command1(100).Caption =1 输出A
[此贴子已经被作者于2007-1-21 19:52:56编辑过]
这样就可以 否则运行不到想要的效果哦