How will i Stop all timers in a form vb.net
问题 I create dynamic form with timer(as a reminder) as a notification or alert form. i assign a name on each form. so whenever it is updated.. i want to close or to disable the timer on that certain form so it will never show (as an alert). the for each control to find timer doesn't work, i can't disable it. For Each f As Form In My.Application.OpenForms If (f.Name = Label10.Text) Or (f.Name = "notification" & Label9.Text) Then Dim timer = Me.components.Components.OfType(Of IComponent)().Where