Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / VB

Use the same button to perform start and stop

3.00/5 (1 vote)
21 Jun 2010CPOL 8.4K  
This trick is really meant for novice programmers...
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

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)