Hidden Features of Delphi - Stack Overflow most recent 30 from stackoverflow.com 2009-11-24T15:14:42Z http://stackoverflow.com/feeds/question/102254 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/102254/hidden-features-of-delphi 25 Hidden Features of Delphi JosephStyons 2008-09-19T14:27:14Z 2009-11-06T09:16:36Z <p>The "Hidden Features" series here on StackOverflow has generated some really interesting feedback. So what about my favorite IDE, Delphi? What are some hidden features there?</p> <p>I'll start with one of my own:</p> <p>You can invoke inline find by typing Ctrl+E, then typing your search term.</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/102272#102272 -11 Answer by hui-viberesh for Hidden Features of Delphi hui-viberesh 2008-09-19T14:29:27Z 2008-09-19T14:29:27Z <p>Random access violation errors generator.</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/102372#102372 7 Answer by Gustavo for Hidden Features of Delphi Gustavo 2008-09-19T14:40:58Z 2008-09-19T14:40:58Z <p><strong>CTRL + Shift + C</strong> generates method header from body description and vice-versa.</p> <p><strong>CTRL + Shift + Space</strong> gives a hint with method signature when editing a method call</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/102430#102430 2 Answer by Oliver Giesen for Hidden Features of Delphi Oliver Giesen 2008-09-19T14:46:56Z 2008-09-19T14:46:56Z <p><strong>Ctrl-Shift + Up/Down</strong> jumps between declaration and implementation of a routine</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/102446#102446 1 Answer by Oliver Giesen for Hidden Features of Delphi Oliver Giesen 2008-09-19T14:49:23Z 2008-11-06T23:47:58Z <p><strong>Ctrl-Alt + Up/Down</strong> performs a word search on the symbol that the cursor is currently located on</p> <p>(EDIT: not entirely correct it seems, I think it comes from GExperts - without it, this shortcut will navigate to the next/previous function/method body)</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/102574#102574 1 Answer by Oliver Giesen for Hidden Features of Delphi Oliver Giesen 2008-09-19T15:03:04Z 2008-09-19T15:03:04Z <p>declaring a typed constant inside a routine will actually act like a static variable with local scope, e.g.:</p> <pre><code>{$WRITEABLECONST ON} procedure TForm1.Button1Click(Sender: TObject); const i: Integer = 0; begin Inc(i); ShowMessageFmt('You clicked me %d times!', [i]); end; </code></pre> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/102585#102585 3 Answer by gabr for Hidden Features of Delphi gabr 2008-09-19T15:04:24Z 2008-09-19T15:04:24Z <p><strong>Ctrl-Shift-0</strong> .. <strong>Ctrl-Shift-9</strong> sets marker (or clears if caret is in marked line)</p> <p><strong>Ctrl-0 .. Ctrl-0</strong> jumps to marker</p> <p><strong>Ctrl-Shift-Enter</strong> finds references for current symbol (where caret is) in the project</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/102615#102615 3 Answer by Oliver Giesen for Hidden Features of Delphi Oliver Giesen 2008-09-19T15:07:41Z 2008-09-19T15:07:41Z <p>the build order of projects in a project group can be changed with <strong>Ctrl+Up/Down</strong><br /> (though I would prefer drag&amp;drop)</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/102616#102616 7 Answer by gabr for Hidden Features of Delphi gabr 2008-09-19T15:07:53Z 2008-09-19T15:07:53Z <p>For me, the most important 'hidden' feature in RAD Studio is that it can be extended with experts. GExperts, DDevExtensions and ModelMaker Code Explorer are on my 'must-use' list and I cannot live without them (<a href="http://17slon.com/blogs/gabr/2008/01/make-better-delphi.html" rel="nofollow">links to products and some description</a>).</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/102627#102627 9 Answer by gabr for Hidden Features of Delphi gabr 2008-09-19T15:09:06Z 2008-09-19T16:44:55Z <p>Really hidden: Help, About, hold the Alt key and type TEAM.</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/103507#103507 3 Answer by Graza for Hidden Features of Delphi Graza 2008-09-19T16:33:24Z 2008-09-19T16:33:24Z <p><strong>Ctrl-Alt + '.'</strong> - Comment out the selected block of code</p> <p><strong>Ctrl-Alt + ','</strong> - Reverse the above</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/103510#103510 4 Answer by Graza for Hidden Features of Delphi Graza 2008-09-19T16:33:49Z 2008-09-19T16:33:49Z <p><strong>Ctrl-Shift + I</strong> - Indent selected block</p> <p><strong>Ctrl-Shift + U</strong> - UN-Indent selected block</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/103769#103769 10 Answer by Jim McKeeth for Hidden Features of Delphi Jim McKeeth 2008-09-19T17:11:07Z 2008-09-19T17:11:07Z <p>In the object inspector, if you hold the [<strong>CTRL</strong>] key when you <strong>double click</strong> a property that is <em>linked</em> to another component it takes you to that component. A linked property is in colored maroon.</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/103875#103875 11 Answer by Erick Sasse for Hidden Features of Delphi Erick Sasse 2008-09-19T17:25:24Z 2008-09-19T17:25:24Z <ul> <li>ESC selects the parent control of the current selected control in the designer. </li> <li>Ctrl+Drag the mouse to select a group of controls without selecting/moving the parent. When controls are in a panel for example.</li> <li>Shift+Arrows to resize controls.</li> <li>Ctrl+Arrows to move controls.</li> </ul> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/103930#103930 5 Answer by François for Hidden Features of Delphi François 2008-09-19T17:33:53Z 2008-09-19T17:33:53Z <p>The debugger enhancements: </p> <ol> <li><strong>Dbl-Click in the Call Stack</strong> panel on a line with a blue dot (i.e. there is debug info) jumps to the calling code (expected) but it also <strong>updates the local variables with the values in scope at this new location</strong> </li> <li>When the <strong>tooltip evaluation</strong> is displayed (mouse hovering a symbol), pressing <strong>Ctrl make it temporarily transparent</strong> </li> <li><strong>Dragging some code</strong> expression into any of the debugger window: Watch List, Evaluate Dialog, Debug Inspector.</li> </ol> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/103967#103967 12 Answer by Nick Hodges for Hidden Features of Delphi Nick Hodges 2008-09-19T17:39:14Z 2008-09-19T17:51:56Z <p><strong>CTRL-Click</strong> on any identifier takes you to the declaration of that identifier.</p> <p><strong>CTRL-O-C</strong> enables block selection in the editor.</p> <p><strong>CTRL+SHIFT+I</strong> indents selected code <strong>CTRL+SHIFT+U</strong> unindents selected code</p> <p><strong>CTRL+K+N</strong> converts the selection to UPPERCASE <strong>CTRL+K+O</strong> to convert it to lowercase</p> <p><a href="http://www.malcolmgroves.com/ecoweb/articleview.aspx?ItemID=c0af98e4c72942cfa8018812bdec35dd" rel="nofollow">You can incrementally search for an item in the Object Inspector.</a></p> <p><strong>CTRL-J</strong> invokes live templates -- I think Live Templates are one of the most powerful and most under utilized features in the IDE. More info on Live Templates:</p> <p><a href="http://delphi.wikia.com/wiki/Delphi_Live_Templates" rel="nofollow">http://delphi.wikia.com/wiki/Delphi_Live_Templates</a> <a href="http://dn.codegear.com/article/37468" rel="nofollow">http://dn.codegear.com/article/37468</a> <a href="http://delphi.wikia.com/wiki/Live_Templates_Technical_Info" rel="nofollow">http://delphi.wikia.com/wiki/Live_Templates_Technical_Info</a></p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/103971#103971 2 Answer by Jim McKeeth for Hidden Features of Delphi Jim McKeeth 2008-09-19T17:39:38Z 2008-09-19T17:39:38Z <p>Up until Delphi 2007 you could drag two different components from the pallet to the form <strong>at the same time</strong> by using <em>Shift selecting one</em>, and then <em>dragging</em> a different one. I guess someone thought that was a bug and removed it though. </p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/104454#104454 4 Answer by Bruce McGee for Hidden Features of Delphi Bruce McGee 2008-09-19T18:46:26Z 2008-09-22T22:34:54Z <p><strong>Ctrl+/</strong> to comment/uncomment a block of code.</p> <p>The problem with <strong>CTRL+Alt+"."</strong> and <strong>Crtl+Alt+","</strong> is that it unmarks the block. I also like having the same key combination toggle the comments on and off.</p> <p>Introduced after Delphi 7. Possibly in Delphi 2005.</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/104557#104557 3 Answer by Zartog for Hidden Features of Delphi Zartog 2008-09-19T19:00:05Z 2008-09-19T19:08:21Z <p>Ctrl-Shift-E invokes the rename refactor. It's available in Delphi 2005+. It allows you to quickly rename a function or variable and all references to it via one pop up dialog. This is the best refactor in the IDE imho.</p> <p>Second best rename trick is too highlight a block of code, click on the icon that appears in the left hand gutter, then select and rename the variable you want to rename. This will rename all copies of that variable within the selection. This is most useful for renaming a local variable to split it from another copy of it.</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/104606#104606 0 Answer by Zartog for Hidden Features of Delphi Zartog 2008-09-19T19:06:20Z 2008-09-19T19:06:20Z <p>Including extensions, the must have extension from GExperts is GDebug. It's comprised of a unit and an executable.</p> <p>When you include the unit you insert send messages through out your code to notify you of events, variable values, progress, etc.</p> <p>The executable creates a system tray icon that simply captures all the messages and time stamps them.</p> <p>The messages work inside and out of the IDE, but it's rather easy to drop some checks for 'DebugHook &lt;> 0' into the gdebug.pas unit if you want to mute it when not debugging.</p> <p>This simple tool has greatly simplified my life for situations where I don't want to setup break points, steps, hit counts, watches, etc. or for situations where the behavior is sporadic, different under the ide or not even necessarily erroneous. </p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/104669#104669 4 Answer by Zaf Keramidas for Hidden Features of Delphi Zaf Keramidas 2008-09-19T19:12:50Z 2008-09-19T19:12:50Z <p>Hold <strong>Alt</strong> and Drag the mouse in the editor to block-select.</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/104933#104933 1 Answer by Peter Turner for Hidden Features of Delphi Peter Turner 2008-09-19T19:46:31Z 2008-09-19T19:46:31Z <p><em>With <a href="http://www.cnpack.org/index.php?lang=en" rel="nofollow">CN Pack</a></em> <br> <strong>CTRL-V</strong> jumps to var block and back <br> <strong>CTRL-/</strong> comments in/out selected lines <br> <hr> Also the code block highlighter is awesome, it color codes your nested statements</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/104954#104954 2 Answer by Peter Turner for Hidden Features of Delphi Peter Turner 2008-09-19T19:48:59Z 2008-09-19T19:48:59Z <p><em>With G-Experts</em> <br> <strong>CTRL-SHIFT-S</strong> opens up a grep search (and replace) is waaaay better than searching using windows. <br> I prefer it even to google desktop search, which incidentally has a delphi source code plug in.</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/104977#104977 1 Answer by Peter Turner for Hidden Features of Delphi Peter Turner 2008-09-19T19:52:42Z 2008-09-19T19:52:42Z <p><code>uses windows</code></p> <p><code>outputdebugstring('my debug info')</code></p> <p>I automap "ods" -> "outputdebugstring(pansichar(format("|",[]))"</p> <p>and use <strong>CTRL-J</strong> to auto-do it. Very handy, you can use CN-Pack debugviewer, or sysinternals, or whatever to view the debug messages, it's way better than messageboxes and no on yells at you when you leave them in the build!</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/106302#106302 8 Answer by Nigel X for Hidden Features of Delphi Nigel X 2008-09-19T23:07:25Z 2008-09-19T23:07:25Z <p>You probably know that Alt+F7 and Alt+F8 navigate back/forward through the results of a "Find in Files"</p> <p>But did you know that when the compiler spits out a list of errors during compilation that Alt+F7 and Alt+F8 now navigate through the errors.</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/108364#108364 1 Answer by smo for Hidden Features of Delphi smo 2008-09-20T14:47:12Z 2008-09-20T14:47:12Z <p>I'm not sure if this still works in newer versions, but up until at least Delphi 7, you can go to the Help|About dialog, hold down <strong>ALT</strong> and type <strong>TEAM</strong>.</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/113396#113396 3 Answer by bprasetio for Hidden Features of Delphi bprasetio 2008-09-22T06:08:23Z 2008-09-22T06:08:23Z <p>Have someone mention <strong>CTRL+SHIFT+G</strong> to generate / insert a new <strong>GUID</strong> at the cursor position ?</p> <p><strong>CTRL+ALT+P</strong> to activate Pallete Window and do component filtering depend on the text you entered (Delphi 2005+)</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/113520#113520 2 Answer by Niklas Winde for Hidden Features of Delphi Niklas Winde 2008-09-22T06:56:52Z 2008-09-22T06:56:52Z <p>Probably not so hidden but:<br /> <strong>Ctrl + alternating between K and I</strong> block indents code to the right.<br /> <strong>Ctrl + alternating between K and U</strong> block indents code to the left.</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/117098#117098 2 Answer by Liron Yahdav for Hidden Features of Delphi Liron Yahdav 2008-09-22T19:49:15Z 2008-09-22T19:49:15Z <p>Ctrl+Click on a line in the Code completion popup (invoke via Ctrl+Space) to jump to the definition of the symbol.</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/117117#117117 2 Answer by Liron Yahdav for Hidden Features of Delphi Liron Yahdav 2008-09-22T19:51:30Z 2008-09-22T19:51:30Z <p>Resize the Code completion popup (invoke via Ctrl+Space) by dragging its borders. The new size will be remembered.</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/117143#117143 5 Answer by Liron Yahdav for Hidden Features of Delphi Liron Yahdav 2008-09-22T19:55:09Z 2008-09-22T19:55:09Z <p>Hidden deep in Delphi's help (Delphi 7 at least) is how to use macros (useful for repetitive tasks):</p> <ol> <li>Press Ctrl+Shift+R to begin recording a macro.</li> <li>Enter the keystrokes you want to record.</li> <li>Press Ctrl+Shift+R to finish and save the macro.</li> <li>To play back the macro, press Ctrl+Shift+P.</li> </ol> <p>Tip: you can use any keyboard shortcuts available while recording the macro (e.g. Ctrl+C for copy, Ctrl+V for paste).</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/117210#117210 5 Answer by Liron Yahdav for Hidden Features of Delphi Liron Yahdav 2008-09-22T20:02:37Z 2008-09-22T20:02:37Z <p>If you press Ctrl+Space while in the interface section of a class, you will get a list of methods you can override and properties you can publish. Methods listed in red must be implemented (they're abstract or from an interface).</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/117725#117725 2 Answer by Jack for Hidden Features of Delphi Jack 2008-09-22T21:21:53Z 2008-09-22T21:21:53Z <p>I did not discover this until recently, but now I use it a lot. If you press Ctrl-Shift while the cursor is over an identifier, you can see the places that identifier is referenced in your entire project. Very useful if you are trying to figure out where a change is happening or what you will break if you change something.</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/117996#117996 1 Answer by Bruce McGee for Hidden Features of Delphi Bruce McGee 2008-09-22T22:24:58Z 2008-09-23T01:38:06Z <p>Navigating methods in a unit:</p> <p>Ctrl+Alt+Up/Down - move to previous/next method Ctrl+Alt+Home/End - move to the first/last method in the unit</p> <p>Introduced after Delphi 7. Works in Delphi Delphi 2006, but I'm not sure about Delphi 2005.</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/118017#118017 2 Answer by The_Fox for Hidden Features of Delphi The_Fox 2008-09-22T22:30:05Z 2008-09-22T22:30:05Z <p><strong>Alt+End:</strong> to navigate through opened windows in the IDE (undocked view).</p> <p><strong>Ctlr+Y:</strong> to delete the current line</p> <p><strong>Alt+Up:</strong> same as Ctrl+Click or Find declaration</p> <p><strong>Alt+Arrow Left/Right:</strong> navigate through your 'Find declarations'</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/121171#121171 4 Answer by Bruce McGee for Hidden Features of Delphi Bruce McGee 2008-09-23T14:00:37Z 2008-09-23T14:00:37Z <p>Team pictures</p> <p>Tested in Delphi 2007 and 2009.</p> <ul> <li>Go to Help|About</li> <li>Hold town the Alt key ant type T E A M to get the scrolling team list.</li> <li>Double-click on the list to see the team picture.</li> </ul> <p>Bonus: - Help|About - Hold down the Alt key and type G U N G L A</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/124919#124919 2 Answer by Malcolm Groves for Hidden Features of Delphi Malcolm Groves 2008-09-24T01:39:13Z 2008-09-24T01:39:13Z <p>Select a unit or the project in the Project Manager and rename it using either F2/Inplace Edit or by changing it in the Obejct Inspector, and it does essentially the same thing as Save As...</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/124926#124926 2 Answer by Malcolm Groves for Hidden Features of Delphi Malcolm Groves 2008-09-24T01:40:59Z 2008-09-24T01:40:59Z <p>Incremental Search in the Object Inspector <a href="http://www.malcolmgroves.com/blog/?p=176" rel="nofollow">here</a></p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/126225#126225 3 Answer by TOndrej for Hidden Features of Delphi TOndrej 2008-09-24T09:36:10Z 2008-09-24T09:36:10Z <p>I find the <a href="http://tondrej.blogspot.com/2004/09/undocumented-delphi-ide-command-line.html" rel="nofollow" title="Undocumented Delphi IDE command line switch">-r command line switch</a> very useful.</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/130700#130700 2 Answer by Malcolm Groves for Hidden Features of Delphi Malcolm Groves 2008-09-24T23:56:39Z 2008-09-24T23:56:39Z <p>Auto-correct in the Editor</p> <p>There are a handful of words I seem to regularly mistype, such as stirng for string, tehn for then, etc.</p> <p>So, I define a Live Template that is keyed off the incorrectly spelled word that automatically changes it to the correct spelling. eg, this one to convert tehn to then:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;codetemplate xmlns="http://schemas.borland.com/Delphi/2005/codetemplates" version="1.0.0"&gt; &lt;template name="tehn" invoke="auto"&gt; &lt;description&gt;Auto-correct tehn into then&lt;/description&gt; &lt;author&gt;Malcolm Groves&lt;/author&gt; &lt;code language="Delphi" context="methodbody" delimiter="|"&gt;&lt;![CDATA[then |end|]]&gt;&lt;/code&gt; &lt;/template&gt; &lt;/codetemplate&gt; </code></pre> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/139265#139265 2 Answer by PatrickvL for Hidden Features of Delphi PatrickvL 2008-09-26T12:51:04Z 2008-09-26T12:51:04Z <p>My favorites, for fast keyboard-only navigation between many (open) units in the Delphi editor :</p> <p><strong>Ctrl + Alt + F12</strong> opens up the top-right dropdown menu of opened units</p> <p><strong>Ctrl + F12</strong> opens up a window with all units of the current project (or project-group if you check the mark for it)</p> <p><strong>Shift + F12</strong> opens up a window with all forms of the current project (or project-group if you check the mark for it)</p> <p>Also have a look at the <a href="http://andy.jgknet.de/dspeedup/index.php?page=DDevExtensions" rel="nofollow">DevExtensions</a> plugin which improves upon those dialogs in various useful ways. For example : One thing I like about this extension is, that it allows substring filtering (instead of the start-of-string searching that the original "View Unit" dialog offers)!</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/162957#162957 0 Answer by for Hidden Features of Delphi 2008-10-02T15:21:01Z 2008-10-02T15:21:01Z <p>If you have GExperts installed (and you should), you can press [Control] + [Shift ] + [f] while the cursor is on some component's name, in the source code, and the component will be selected in the form. Very useful.</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/261849#261849 1 Answer by utku_karatas for Hidden Features of Delphi utku_karatas 2008-11-04T13:15:32Z 2008-11-04T13:15:32Z <p><strong>Ctrl + E</strong> -> incremental search. In case you find "Ctrl+F" with the dialogue too much of an hassle.</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/332328#332328 2 Answer by eKek0 for Hidden Features of Delphi eKek0 2008-12-01T21:34:40Z 2008-12-01T21:34:40Z <p>Code folding: </p> <ul> <li><strong>Ctrl+Shift+K+A</strong> Expands All blocks of code</li> <li><strong>Ctrl+Shift+K+E</strong> Collapse current block of code </li> <li><strong>Ctrl+Shift+K+U</strong> Expand current block of code </li> <li><strong>Ctrl+Shift+K+T</strong> Toggle Current block (expand &amp; collapse) </li> <li><strong>Ctrl+Shift+K+R</strong> Collapses all regions {$region 'comment'}..{$endregion} </li> <li><strong>Ctrl+Shift+K+P</strong> Collapse nested procedures </li> <li><strong>Ctrl+Shift+K+M</strong> Collapse all methods </li> <li><strong>Ctrl+Shift+K+C</strong> Collapse all classes </li> <li><strong>Ctrl+Shift+K+G</strong> Collapses down to primary Groups [Interface/Implementation] </li> <li><strong>Ctrl+Shift+K+N</strong> Collapses Namespace/Unit</li> </ul> <p>This and <a href="http://delphi.wikia.com/wiki/Default_IDE_Shortcut_Keys" rel="nofollow">others shortcuts</a> in a <a href="http://delphi.wikia.com/wiki/Delphi_Wiki" rel="nofollow">little unknown wiki</a>.</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/768568#768568 2 Answer by Francois Zbinden for Hidden Features of Delphi Francois Zbinden 2009-04-20T14:38:01Z 2009-04-20T14:38:01Z <p>The command line switch <strong>-np</strong> starts Delphi without loading the last used project. </p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/770043#770043 2 Answer by SeanX for Hidden Features of Delphi SeanX 2009-04-20T20:53:41Z 2009-04-20T20:53:41Z <p>In the editor, you can hold down the alt key and drag select to perform a block selection.</p> http://stackoverflow.com/questions/102254/hidden-features-of-delphi/1672032#1672032 1 Answer by johnny for Hidden Features of Delphi johnny 2009-11-04T06:35:02Z 2009-11-06T09:16:36Z <p>Ctrl+Arrows moves control one pixel.</p> <p>Ctrl+Shift+Arrows moves control several pixels.</p> <p>Another nice feature is Sync Edit Mode, invoked by selecting several rows and pressing ctrl + shift + j (or clicking the icon that appears on the left). This allows you to change all instances of the same text at once, e.g. variable names, function calls...</p>