Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Quick Question!
#5
Don't use a timer. If you have have it changing throughout your program just use this
Code:
Private Sub Button1_EnabledChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.EnabledChanged
        If Button1.Enabled = True Then
            Button2.Enabled = True
        Else
            Button2.Enabled = False
        End If
End Sub
Reply


Messages In This Thread
Quick Question! - by pers2981 - 11-10-2010, 02:46 PM
RE: Quick Question! - by Xzotic - 11-10-2010, 05:44 PM
RE: Quick Question! - by thanasis2028 - 11-11-2010, 08:33 AM
RE: Quick Question! - by JMK940 - 11-14-2010, 04:40 AM
RE: Quick Question! - by KoBE - 11-14-2010, 12:04 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Quick Question ruk00112 7 1,217 09-25-2010, 12:10 AM
Last Post: ruk00112

Forum Jump:


Users browsing this thread: 6 Guest(s)