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

prev 1 2
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 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 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 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 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 4 vote down

Ctrl-Shift + I - Indent selected block

Ctrl-Shift + U - UN-Indent selected block

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 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 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-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 1 vote down

declaring a typed constant inside a routine will actually act like a static variable with local scope, e.g.:

{$WRITEABLECONST ON}
procedure TForm1.Button1Click(Sender: TObject);
const
  i: Integer = 0;
begin
  Inc(i);
  ShowMessageFmt('You clicked me %d times!', [i]);
end;
link|flag
show 1 more comment
vote up 1 vote down

Ctrl-Alt + Up/Down performs a word search on the symbol that the cursor is currently located on

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

link|flag
vote up 2 vote down

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

link|flag
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 -11 vote down

Random access violation errors generator.

link|flag
show 1 more comment
prev 1 2

Your Answer

Get an OpenID
or

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