User Shannon - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T11:05:42Zhttp://stackoverflow.com/feeds/user/51972http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/28999/favorite-ide-feature/456517#4565171Answer by Shannon for Favorite IDE feature?Shannon2009-01-19T04:22:05Z2009-09-15T23:56:01Z<p>In Delphi 2007:</p>
<ul>
<li>Syntax Highlighting. </li>
<li>Auto-completion. Far less typing. Saves having to remember all method names and arguments for each.</li>
<li>Simple refactoring tools. I use the rename method/variable most often. It searches through all files in the project and renames all instances of the method/variable. :D</li>
<li>Pop-up hints when holding the mouse over unfamiliar methods. The pop-up hint shows where the method is declared, all arguments and variable types.</li>
<li>Syntax checking. Helps to quickly identify mistyped keywords.</li>
<li>Being able to record macros easily.</li>
</ul>
<p>I've not done much coding in text editors but I imagine my productivity would drop. In short, I love my IDE! ;)</p>
http://stackoverflow.com/questions/456488/how-to-add-mouse-wheel-support-to-a-component-descended-from-tgraphiccontrol1How to add mouse wheel support to a component descended from TGraphicControl?Shannon2009-01-19T03:58:42Z2009-05-28T08:05:26Z
<p>I have created a delphi component which descends from TGraphicControl. Is it possible to add support for mouse wheels?<br></p>
<p>--- Edit ---</p>
<p>I've exposed the MouseWheel events as shown below but they aren't called. </p>
<pre><code>TMyComponent = class(TGraphicControl)
published
property OnMouseWheel;
property OnMouseWheelDown;
property OnMouseWheelUp;
end;
</code></pre>
<p>--- Edit ---</p>
<p>As suggested below, I've tried to trap the WM_MOUSEWHEEL and CM_MOUSEWHEEL messages, but it doesn't seem to work. However I've managed to trap the CM_MOUSEENTER message. I don't understand why i can trap one type of message, but not the other. </p>
http://stackoverflow.com/questions/415958/how-to-automatically-free-classes-objects5How to automatically free classes/objects?Shannon2009-01-06T09:52:34Z2009-01-09T02:23:51Z
<p>What techniques exist to automatically free objects in delphi applications?</p>
http://stackoverflow.com/questions/456488/how-to-add-mouse-wheel-support-to-a-component-descended-from-tgraphiccontrol/457405#457405Comment by Shannon on How to add mouse wheel support to a component descended from TGraphicControl?Shannon2009-01-20T01:50:00Z2009-01-20T01:50:00ZI changed my component to descend from TCustomControl (my control needs a canvas to draw on) but the MouseWheel event handlers were still ignored. (I'm starting to feel a bit dumb here. lol) – Shannon (0 secs ago)http://stackoverflow.com/questions/456488/how-to-add-mouse-wheel-support-to-a-component-descended-from-tgraphiccontrol/457405#457405Comment by Shannon on How to add mouse wheel support to a component descended from TGraphicControl?Shannon2009-01-20T01:47:58Z2009-01-20T01:47:58ZI tried overriding the MouseWheelHandler method, but that wasn't being called consistently. Sometimes the messages would still be passed on to the underlying form.http://stackoverflow.com/questions/456488/how-to-add-mouse-wheel-support-to-a-component-descended-from-tgraphiccontrol/456622#456622Comment by Shannon on How to add mouse wheel support to a component descended from TGraphicControl?Shannon2009-01-20T01:46:04Z2009-01-20T01:46:04ZI tried this, but my control wouldn't trap the WM_MOUSEWHEEL or CM_MOUSEWHEEL message. But it worked as expected when attempting to trap the CM_MOUSEENTER message. http://stackoverflow.com/questions/456488/how-to-add-mouse-wheel-support-to-a-component-descended-from-tgraphiccontrol/456625#456625Comment by Shannon on How to add mouse wheel support to a component descended from TGraphicControl?Shannon2009-01-19T08:55:56Z2009-01-19T08:55:56ZSomething is still missing, after re-declaring the MouseWheel events as shown above, they still aren't called.