This should be a simple enough thing to do:

VB Code:
  1. Private Sub tabClock_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles tabClock.Click
  2.  
  3.         tmrOne.Enabled = True       ' start main clock timer
  4. ' more code to go here
  5.  
  6.  
  7.     End Sub             ' tabClock_Click

All I want to do is to start the timer when a particular tab is clicked, but the timer never starts. I put a breakpoint in the first line of code and the break never happens, which suggests that the click event is being completely ignored.

I've hunted high and low in MSDN Library for what's going on, to no avail. Have any of you guys got any ideas?