剛開始學習的Visual Basic ..使用循環通過按鈕單擊更改標籤文本?
此使用循環時,工作原理:框信息彈出直到完成
Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
Dim d As Integer = 1
Do While d < 5
MessageBox.Show("Value: " & d)
d = d + 1
Loop
End Sub
當我想要使用它的標籤文本它提供了與點擊
最終輸出Label2.Text = ("The value of i is: " & i)
我該如何讓它只在點擊按鈕時循環?我必須添加if語句嗎?