Howdy.
I’m trying to programmatically add a timer into the App.Open Event that calls a method. The method seems to never get called. I added breakpoints at the Dim lines in the method at the very first line. What am I doing wrong?
[code] Dim MyTimer as New Timer
MyTimer.Mode = Timer.ModeMultiple
MyTimer.Period = 5000
AddHandler MyTimer.Action, AddressOf ServerPing
MyTimer.Enabled=True[/code]