Alright, I have form, with multiple buttons on it.

I want it so when I Click on the Button that Says START it will Change to STOP but at the same time Enable all the Disabled Buttons on the Form. ATM I have this.

vb Code:
  1. Dim ctl As Control = Me.GetNextControl(tbStudio, True)
  2.         Do Until ctl Is Nothing
  3.             If TypeOf ctl Is Button Then
  4.                 If ctl.Enabled Then
  5.                     ctl.Enabled = False
  6.                 Else
  7.                     ctl.Enabled = True
  8.                 End If
  9.             End If
  10.             ctl = Me.GetNextControl(ctl, True)
  11.         Loop

Works Good, but when I add the btnStartStop.Text = "Start" or .Text = "Stop" to the If Statements, it's always getting stuck on "Stop"

I also tried a Boolean statement but came out all funky, EVERY OTHER button was Disabled while the OTHERS were Enabled.


I feel like a n00b, I've been programing for a bit now, but just got back into it, Help!