This is my issue: I have a loop 1 to 30 that needs to run a iteration every time that I click the button. basically if i click it should run one iteration and wait for the next click to run the second iteration and so on.
Public Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
For i = 1 To 30 'go to next iteration only when i click the Button1
do whatever
next i
end sub