I have defined a timer in the App class of a Web application called “LogTimer”
I wish the method MyMethod to pretty frequently
[code] LogTimer = New Timer
LogTimer.Period = 1000
LogTimer.Mode = Timer.ModeMultiple
AddHandler LogTimer.Action, AddressOf MyMethod[/code]
However I get an error: Type mismatch error. Expected delegate Delegate(Timer), but got Delegate ()
What Am I missing?