Declare this in the general section inside the class:
dim flag as integer = 1
and then copy and paste the following code inside the button's click event:
If (flag = 1) Then
'write down the statements to start...
Else
'write down the statements to stop...
End If
flag *= -1