我使用vb.net下一步,我有這樣的情況:繼續在For ... Next循環,只有當用戶點擊一個按鈕
我有一個按鈕(Mybutton1)。
我也有一個包含FOR..NEXT環子:
.....
for I=1 to nr1
{.... some instructions...}
if condition1 then
Mybutton1.enable=true
!!!!! at this point the loop must wait for the user to press the button !!!!!
end if
Next
在此每一步For循環,按鈕成了當條件爲真,在這種情況下,我想是啓用這個循環停止,直到用戶按下按鈕。 (按鈕的點擊事件,在最後有一些指令,使得再次被禁用的按鈕)
我編輯了您的標題。請參閱:「[應該在其標題中包含」標籤「](http://meta.stackexchange.com/questions/19190/)」,其中的共識是「不,他們不應該」。 –
當滿足條件時,不要在每一步都跳出for循環,爲什麼不使用do或while循環? – Tim
但我想要的是循環在條件爲真時停止,並在用戶按下按鈕時繼續下一步。我如何使用While循環來做到這一點? – alex