vote up 25 vote down star
23

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?

I'll start with one of my own:

You can invoke inline find by typing Ctrl+E, then typing your search term.

flag

46 Answers

1 2 next
vote up 9 vote down check

Really hidden: Help, About, hold the Alt key and type TEAM.

link|flag
2  
Just realized - in D2007, do this trick, then double-click on the scrolling credits to get a picture – JosephStyons Jul 13 at 19:59
show 3 more comments
vote up 12 vote down

CTRL-Click on any identifier takes you to the declaration of that identifier.

CTRL-O-C enables block selection in the editor.

CTRL+SHIFT+I indents selected code CTRL+SHIFT+U unindents selected code

CTRL+K+N converts the selection to UPPERCASE CTRL+K+O to convert it to lowercase

You can incrementally search for an item in the Object Inspector.

CTRL-J 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:

http://delphi.wikia.com/wiki/Delphi_Live_Templates http://dn.codegear.com/article/37468 http://delphi.wikia.com/wiki/Live_Templates_Technical_Info

link|flag
show 2 more comments
vote up 11 vote down
  • ESC selects the parent control of the current selected control in the designer.
  • Ctrl+Drag the mouse to select a group of controls without selecting/moving the parent. When controls are in a panel for example.
  • Shift+Arrows to resize controls.
  • Ctrl+Arrows to move controls.
link|flag
show 1 more comment
vote up 10 vote down

In the object inspector, if you hold the [CTRL] key when you double click a property that is linked to another component it takes you to that component. A linked property is in colored maroon.

link|flag
show 2 more comments
vote up 8 vote down

You probably know that Alt+F7 and Alt+F8 navigate back/forward through the results of a "Find in Files"

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.

link|flag
show 1 more comment
vote up 7 vote down

CTRL + Shift + C generates method header from body description and vice-versa.

CTRL + Shift + Space gives a hint with method signature when editing a method call

link|flag
show 3 more comments
vote up 7 vote down

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 (links to products and some description).

link|flag
vote up 5 vote down

The debugger enhancements:

  1. Dbl-Click in the Call Stack panel on a line with a blue dot (i.e. there is debug info) jumps to the calling code (expected) but it also updates the local variables with the values in scope at this new location
  2. When the tooltip evaluation is displayed (mouse hovering a symbol), pressing Ctrl make it temporarily transparent
  3. Dragging some code expression into any of the debugger window: Watch List, Evaluate Dialog, Debug Inspector.
link|flag
1  
Delphi 2006 and up – Lars Truijens Sep 20 '08 at 10:46
vote up 5 vote down

Hidden deep in Delphi's help (Delphi 7 at least) is how to use macros (useful for repetitive tasks):

  1. Press Ctrl+Shift+R to begin recording a macro.
  2. Enter the keystrokes you want to record.
  3. Press Ctrl+Shift+R to finish and save the macro.
  4. To play back the macro, press Ctrl+Shift+P.

Tip: you can use any keyboard shortcuts available while recording the macro (e.g. Ctrl+C for copy, Ctrl+V for paste).

link|flag
vote up 5 vote down

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).

link|flag
vote up 4 vote down

Ctrl-Shift + I - Indent selected block

Ctrl-Shift + U - UN-Indent selected block

link|flag
vote up 4 vote down

Hold Alt and Drag the mouse in the editor to block-select.

link|flag
vote up 4 vote down

Ctrl+/ to comment/uncomment a block of code.

The problem with CTRL+Alt+"." and Crtl+Alt+"," is that it unmarks the block. I also like having the same key combination toggle the comments on and off.

Introduced after Delphi 7. Possibly in Delphi 2005.

link|flag
show 1 more comment
vote up 4 vote down

Team pictures

Tested in Delphi 2007 and 2009.

  • Go to Help|About
  • Hold town the Alt key ant type T E A M to get the scrolling team list.
  • Double-click on the list to see the team picture.

Bonus: - Help|About - Hold down the Alt key and type G U N G L A

link|flag
vote up 3 vote down

Ctrl-Shift-0 .. Ctrl-Shift-9 sets marker (or clears if caret is in marked line)

Ctrl-0 .. Ctrl-0 jumps to marker

Ctrl-Shift-Enter finds references for current symbol (where caret is) in the project

link|flag
show 3 more comments
vote up 3 vote down

the build order of projects in a project group can be changed with Ctrl+Up/Down
(though I would prefer drag&drop)

link|flag
vote up 3 vote down

Ctrl-Alt + '.' - Comment out the selected block of code

Ctrl-Alt + ',' - Reverse the above

link|flag
show 4 more comments
vote up 3 vote down

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.

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.

link|flag
show 1 more comment
vote up 3 vote down

Have someone mention CTRL+SHIFT+G to generate / insert a new GUID at the cursor position ?

CTRL+ALT+P to activate Pallete Window and do component filtering depend on the text you entered (Delphi 2005+)

link|flag
vote up 3 vote down

I find the -r command line switch very useful.

link|flag
vote up 2 vote down

Ctrl-Shift + Up/Down jumps between declaration and implementation of a routine

link|flag
vote up 2 vote down

Up until Delphi 2007 you could drag two different components from the pallet to the form at the same time by using Shift selecting one, and then dragging a different one. I guess someone thought that was a bug and removed it though.

link|flag
vote up 2 vote down

With G-Experts
CTRL-SHIFT-S opens up a grep search (and replace) is waaaay better than searching using windows.
I prefer it even to google desktop search, which incidentally has a delphi source code plug in.

link|flag
show 2 more comments
vote up 2 vote down

Probably not so hidden but:
Ctrl + alternating between K and I block indents code to the right.
Ctrl + alternating between K and U block indents code to the left.

link|flag
show 1 more comment
vote up 2 vote down

Ctrl+Click on a line in the Code completion popup (invoke via Ctrl+Space) to jump to the definition of the symbol.

link|flag
vote up 2 vote down

Resize the Code completion popup (invoke via Ctrl+Space) by dragging its borders. The new size will be remembered.

link|flag
vote up 2 vote down

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.

link|flag
show 2 more comments
vote up 2 vote down

Alt+End: to navigate through opened windows in the IDE (undocked view).

Ctlr+Y: to delete the current line

Alt+Up: same as Ctrl+Click or Find declaration

Alt+Arrow Left/Right: navigate through your 'Find declarations'

link|flag
vote up 2 vote down

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...

link|flag
vote up 2 vote down

Incremental Search in the Object Inspector here

link|flag
1 2 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.