Feedback
Instance event handlers can now be removed with RemoveHandler
- Status
- Fixed
- Fixed in
- v26.7.6
- Source discussion
- https://forum.objo.dev/d/698-bug-timer
- Last updated
- 2026-07-29
Upvotes
0 upvotes
Uses your Objo forum account.
Public summary
RemoveHandler does not detach an instance method that was previously attached with AddHandler. This is visible with a Timer control: handlers added with AddHandler Timer1.Tick, AddressOf tick1 continue to receive Tick events after the matching RemoveHandler statement. RemoveHandler should identify the same receiver-and-method pair and detach it.