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

Random access violation errors generator.

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

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

link|flag
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 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 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 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

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

Ctrl-Alt + ',' - Reverse the above

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

Ctrl-Shift + I - Indent selected block

Ctrl-Shift + U - UN-Indent selected block

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

Including extensions, the must have extension from GExperts is GDebug. It's comprised of a unit and an executable.

When you include the unit you insert send messages through out your code to notify you of events, variable values, progress, etc.

The executable creates a system tray icon that simply captures all the messages and time stamps them.

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.

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.

link|flag
vote up 4 vote down

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

link|flag
vote up 1 vote down

With CN Pack
CTRL-V jumps to var block and back
CTRL-/ comments in/out selected lines


Also the code block highlighter is awesome, it color codes your nested statements

link|flag
show 1 more comment
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 1 vote down

uses windows

outputdebugstring('my debug info')

I automap "ods" -> "outputdebugstring(pansichar(format("|",[]))"

and use CTRL-J 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!

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

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 ALT and type TEAM.

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