Buongiorno.
come faccio a trovare un timer nella form.
Con textbox, label e altro uso questa funzione:
codice:
    Public Function FindControl(ByVal ControlName As String, ByVal CurrentControl As Control) As Control
        For Each ctr As Control In CurrentControl.Controls
            If ctr.Name = ControlName Then
                Return ctr
            Else
                ctr = FindControl(ControlName, ctr)
                If Not ctr Is Nothing Then
                    Return ctr
                End If
            End If
        Next ctr
        Return Nothing
    End Function
Con i timer ?

Grazie, Alberto