1
vote
Dynamically creating a sub-menu in Delphi
Just an aside (I know you have found the cause)
Why are you using lNewMenuItems: array[0..flagCount] of tMenuItem; instead of using a singe variable?
Also, is there a reason for not …
5
votes
Is there a way to locate unused event handlers in Delphi?
Use the "Rename Method" refactoring to rename each event handler. Check the "View references before refactoring" checkbox.
Check the Refactoring window. If the event handler is linked to a …
