Hidden Features of Delphi - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T15:14:42Zhttp://stackoverflow.com/feeds/question/102254http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/102254/hidden-features-of-delphi25Hidden Features of DelphiJosephStyons2008-09-19T14:27:14Z2009-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-11Answer by hui-viberesh for Hidden Features of Delphihui-viberesh2008-09-19T14:29:27Z2008-09-19T14:29:27Z<p>Random access violation errors generator.</p>
http://stackoverflow.com/questions/102254/hidden-features-of-delphi/102372#1023727Answer by Gustavo for Hidden Features of DelphiGustavo2008-09-19T14:40:58Z2008-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#1024302Answer by Oliver Giesen for Hidden Features of DelphiOliver Giesen2008-09-19T14:46:56Z2008-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#1024461Answer by Oliver Giesen for Hidden Features of DelphiOliver Giesen2008-09-19T14:49:23Z2008-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#1025741Answer by Oliver Giesen for Hidden Features of DelphiOliver Giesen2008-09-19T15:03:04Z2008-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#1025853Answer by gabr for Hidden Features of Delphigabr2008-09-19T15:04:24Z2008-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#1026153Answer by Oliver Giesen for Hidden Features of DelphiOliver Giesen2008-09-19T15:07:41Z2008-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&drop)</p>
http://stackoverflow.com/questions/102254/hidden-features-of-delphi/102616#1026167Answer by gabr for Hidden Features of Delphigabr2008-09-19T15:07:53Z2008-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#1026279Answer by gabr for Hidden Features of Delphigabr2008-09-19T15:09:06Z2008-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#1035073Answer by Graza for Hidden Features of DelphiGraza2008-09-19T16:33:24Z2008-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#1035104Answer by Graza for Hidden Features of DelphiGraza2008-09-19T16:33:49Z2008-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#10376910Answer by Jim McKeeth for Hidden Features of DelphiJim McKeeth2008-09-19T17:11:07Z2008-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#10387511Answer by Erick Sasse for Hidden Features of DelphiErick Sasse2008-09-19T17:25:24Z2008-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#1039305Answer by François for Hidden Features of DelphiFrançois2008-09-19T17:33:53Z2008-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#10396712Answer by Nick Hodges for Hidden Features of DelphiNick Hodges2008-09-19T17:39:14Z2008-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#1039712Answer by Jim McKeeth for Hidden Features of DelphiJim McKeeth2008-09-19T17:39:38Z2008-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#1044544Answer by Bruce McGee for Hidden Features of DelphiBruce McGee2008-09-19T18:46:26Z2008-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#1045573Answer by Zartog for Hidden Features of DelphiZartog2008-09-19T19:00:05Z2008-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#1046060Answer by Zartog for Hidden Features of DelphiZartog2008-09-19T19:06:20Z2008-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 <> 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#1046694Answer by Zaf Keramidas for Hidden Features of DelphiZaf Keramidas2008-09-19T19:12:50Z2008-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#1049331Answer by Peter Turner for Hidden Features of DelphiPeter Turner2008-09-19T19:46:31Z2008-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#1049542Answer by Peter Turner for Hidden Features of DelphiPeter Turner2008-09-19T19:48:59Z2008-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#1049771Answer by Peter Turner for Hidden Features of DelphiPeter Turner2008-09-19T19:52:42Z2008-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#1063028Answer by Nigel X for Hidden Features of DelphiNigel X2008-09-19T23:07:25Z2008-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#1083641Answer by smo for Hidden Features of Delphismo2008-09-20T14:47:12Z2008-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#1133963Answer by bprasetio for Hidden Features of Delphibprasetio2008-09-22T06:08:23Z2008-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#1135202Answer by Niklas Winde for Hidden Features of DelphiNiklas Winde2008-09-22T06:56:52Z2008-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#1170982Answer by Liron Yahdav for Hidden Features of DelphiLiron Yahdav2008-09-22T19:49:15Z2008-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#1171172Answer by Liron Yahdav for Hidden Features of DelphiLiron Yahdav2008-09-22T19:51:30Z2008-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#1171435Answer by Liron Yahdav for Hidden Features of DelphiLiron Yahdav2008-09-22T19:55:09Z2008-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#1172105Answer by Liron Yahdav for Hidden Features of DelphiLiron Yahdav2008-09-22T20:02:37Z2008-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#1177252Answer by Jack for Hidden Features of DelphiJack2008-09-22T21:21:53Z2008-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#1179961Answer by Bruce McGee for Hidden Features of DelphiBruce McGee2008-09-22T22:24:58Z2008-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#1180172Answer by The_Fox for Hidden Features of DelphiThe_Fox2008-09-22T22:30:05Z2008-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#1211714Answer by Bruce McGee for Hidden Features of DelphiBruce McGee2008-09-23T14:00:37Z2008-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#1249192Answer by Malcolm Groves for Hidden Features of DelphiMalcolm Groves2008-09-24T01:39:13Z2008-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#1249262Answer by Malcolm Groves for Hidden Features of DelphiMalcolm Groves2008-09-24T01:40:59Z2008-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#1262253Answer by TOndrej for Hidden Features of DelphiTOndrej2008-09-24T09:36:10Z2008-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#1307002Answer by Malcolm Groves for Hidden Features of DelphiMalcolm Groves2008-09-24T23:56:39Z2008-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><?xml version="1.0" encoding="utf-8" ?>
<codetemplate xmlns="http://schemas.borland.com/Delphi/2005/codetemplates" version="1.0.0">
<template name="tehn" invoke="auto">
<description>Auto-correct tehn into then</description>
<author>Malcolm Groves</author>
<code language="Delphi" context="methodbody" delimiter="|"><![CDATA[then |end|]]></code>
</template>
</codetemplate>
</code></pre>
http://stackoverflow.com/questions/102254/hidden-features-of-delphi/139265#1392652Answer by PatrickvL for Hidden Features of DelphiPatrickvL2008-09-26T12:51:04Z2008-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#1629570Answer by for Hidden Features of Delphi2008-10-02T15:21:01Z2008-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#2618491Answer by utku_karatas for Hidden Features of Delphiutku_karatas2008-11-04T13:15:32Z2008-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#3323282Answer by eKek0 for Hidden Features of DelphieKek02008-12-01T21:34:40Z2008-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 & 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#7685682Answer by Francois Zbinden for Hidden Features of DelphiFrancois Zbinden2009-04-20T14:38:01Z2009-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#7700432Answer by SeanX for Hidden Features of DelphiSeanX2009-04-20T20:53:41Z2009-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#16720321Answer by johnny for Hidden Features of Delphijohnny2009-11-04T06:35:02Z2009-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>