Таймер.проблема прошедшее событие
я застрял с таймером, может кто-нибудь объяснить, пожалуйста, как это событие работает? что нужно вызвать в основной форме, чтобы запустить этот модуль? Я создал модуль под названием "пример", попытался заставить таймер писать в форме 1 текст метки" привет " каждые 2 секунды, но при запуске приложения ничего не происходит. Кто-нибудь поможет? Спасибо. Я использую WinForms
Что я уже пробовал:
Imports System.Timers Public Module example Private aTimer As Timer Public Sub Main() ' Create a timer and set a two second interval. aTimer = New System.Timers.Timer() aTimer.Interval = 2000 ' Hook up the Elapsed event for the timer. AddHandler aTimer.Elapsed, AddressOf OnTimedEvent ' Have the timer fire repeated events (true is the default) aTimer.AutoReset = True ' Start the timer aTimer.Enabled = True End Sub Private Sub OnTimedEvent(source As Object, e As System.Timers.ElapsedEventArgs) Form1.Label1.Text = " hello" End Sub End Module