Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
actually, it is "hidden" in the Search menu, item "incremental search" – Free Consulting Nov 14 '10 at 19:23
2  
This list of hidden features is kinda lame. Most answers aren't "hidden" features at all. They are just regurgitation of Delphi's fully documented features. – Kenneth Cochran Nov 19 '10 at 16:39
1  
Source for 80% of "hidden" features described in answers is Keyboard mapping index – ThinkJet Aug 15 '11 at 16:00
show 2 more comments

closed as not constructive by casperOne May 6 '12 at 16:50

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

51 Answers

1 2
up vote 31 down vote accepted

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

share|improve this answer
3  
up to your first comma I though this was going to be another rant about the state of the documentation... ;) – Oliver Giesen Sep 19 '08 at 15:17
7  
Just realized - in D2007, do this trick, then double-click on the scrolling credits to get a picture – JosephStyons Jul 13 '09 at 19:59
3  
D2010 has this as well as the photo if you double-click the scrolling credits. – Red Haze Sep 14 '09 at 4:46
show 3 more comments

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

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

and to turn them off: http://docwiki.embarcadero.com/RADStudio/en/Default_Keyboard_Shortcuts Ctrl+O+C Turns on column block selection
Ctrl+O+K Turns off column block selection
CTRL+O+L Turn on line mode selection

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

share|improve this answer
5  
Funny, I use CTRL+K+I and CTRL+K+U for (un)indenting. Did not know of the +Shift version. – NGLN May 22 '11 at 6:55
show 4 more comments
  • 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.
share|improve this answer
3  
Yep, those are great. Especially Ctrl+Drag is largely unknown. – gabr Sep 19 '08 at 18:14

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.

share|improve this answer
show 2 more comments

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

share|improve this answer
show 4 more comments

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.

share|improve this answer
show 1 more comment

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

share|improve this answer

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

share|improve this answer

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

share|improve this answer
show 1 more comment

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

share|improve this answer
show 2 more comments

Ctrl-Shift + I - Indent selected block

Ctrl-Shift + U - UN-Indent selected block

share|improve this answer
show 1 more comment

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.
share|improve this answer
2  
Delphi 2006 and up – Lars Truijens Sep 20 '08 at 10:46

I did not discover this until recently, but now I use it a lot. If you press Ctrl-Shift-Enter 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.

share|improve this answer
show 4 more comments

Bit of a late reaction, but Ctrl+O , O inserts your current compiler settings into the current unit.

I mostly use it when I can't think of the name of a define.

{$A8,B-,C+,D+,E-,F-,G+,H+,I+,J-,K-,L+,M-,N-,O+,P+,Q-,R-,S-,T-,U-,V+,W-,X+,Y+,Z1}
{$MINSTACKSIZE $00004000}
{$MAXSTACKSIZE $00100000}
{$IMAGEBASE $00400000}
{$APPTYPE GUI}
{$WARN SYMBOL_DEPRECATED ON}
{$WARN SYMBOL_LIBRARY ON}
{$WARN SYMBOL_PLATFORM ON}
{$WARN SYMBOL_EXPERIMENTAL ON}
{$WARN UNIT_LIBRARY ON}
{$WARN UNIT_PLATFORM ON}
{$WARN UNIT_DEPRECATED ON}
{$WARN UNIT_EXPERIMENTAL ON}
{$WARN HRESULT_COMPAT ON}
{$WARN HIDING_MEMBER ON}
{$WARN HIDDEN_VIRTUAL ON}
{$WARN GARBAGE ON}
{$WARN BOUNDS_ERROR ON}
{$WARN ZERO_NIL_COMPAT ON}
{$WARN STRING_CONST_TRUNCED ON}
{$WARN FOR_LOOP_VAR_VARPAR ON}
{$WARN TYPED_CONST_VARPAR ON}
{$WARN ASG_TO_TYPED_CONST ON}
{$WARN CASE_LABEL_RANGE ON}
{$WARN FOR_VARIABLE ON}
{$WARN CONSTRUCTING_ABSTRACT ON}
{$WARN COMPARISON_FALSE ON}
{$WARN COMPARISON_TRUE ON}
{$WARN COMPARING_SIGNED_UNSIGNED ON}
{$WARN COMBINING_SIGNED_UNSIGNED ON}
{$WARN UNSUPPORTED_CONSTRUCT ON}
{$WARN FILE_OPEN ON}
{$WARN FILE_OPEN_UNITSRC ON}
{$WARN BAD_GLOBAL_SYMBOL ON}
{$WARN DUPLICATE_CTOR_DTOR ON}
{$WARN INVALID_DIRECTIVE ON}
{$WARN PACKAGE_NO_LINK ON}
{$WARN PACKAGED_THREADVAR ON}
{$WARN IMPLICIT_IMPORT ON}
{$WARN HPPEMIT_IGNORED ON}
{$WARN NO_RETVAL ON}
{$WARN USE_BEFORE_DEF ON}
{$WARN FOR_LOOP_VAR_UNDEF ON}
{$WARN UNIT_NAME_MISMATCH ON}
{$WARN NO_CFG_FILE_FOUND ON}
{$WARN IMPLICIT_VARIANTS ON}
{$WARN UNICODE_TO_LOCALE ON}
{$WARN LOCALE_TO_UNICODE ON}
{$WARN IMAGEBASE_MULTIPLE ON}
{$WARN SUSPICIOUS_TYPECAST ON}
{$WARN PRIVATE_PROPACCESSOR ON}
{$WARN UNSAFE_TYPE OFF}
{$WARN UNSAFE_CODE OFF}
{$WARN UNSAFE_CAST OFF}
{$WARN OPTION_TRUNCATED ON}
{$WARN WIDECHAR_REDUCED ON}
{$WARN DUPLICATES_IGNORED ON}
{$WARN UNIT_INIT_SEQ ON}
{$WARN LOCAL_PINVOKE ON}
{$WARN MESSAGE_DIRECTIVE ON}
{$WARN TYPEINFO_IMPLICITLY_ADDED ON}
{$WARN RLINK_WARNING ON}
{$WARN IMPLICIT_STRING_CAST ON}
{$WARN IMPLICIT_STRING_CAST_LOSS ON}
{$WARN EXPLICIT_STRING_CAST OFF}
{$WARN EXPLICIT_STRING_CAST_LOSS OFF}
{$WARN CVT_WCHAR_TO_ACHAR ON}
{$WARN CVT_NARROWING_STRING_LOST ON}
{$WARN CVT_ACHAR_TO_WCHAR ON}
{$WARN CVT_WIDENING_STRING_LOST ON}
{$WARN XML_WHITESPACE_NOT_ALLOWED ON}
{$WARN XML_UNKNOWN_ENTITY ON}
{$WARN XML_INVALID_NAME_START ON}
{$WARN XML_INVALID_NAME ON}
{$WARN XML_EXPECTED_CHARACTER ON}
{$WARN XML_CREF_NO_RESOLVE ON}
{$WARN XML_NO_PARM ON}
{$WARN XML_NO_MATCHING_PARM ON}
share|improve this answer

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

Ctrl-Alt + ',' - Reverse the above

share|improve this answer
4  
In modern Delphis (since 2005?) Ctrl+/ does the same (in both directions). – gabr Sep 19 '08 at 16:46
show 3 more comments

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

share|improve this answer
2  
This is similar to shift selection with cursor keys. I.e. if you also hold down Alt, then a block selection will be done instead. – Craig Young Dec 17 '09 at 13:37

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

share|improve this answer

Code folding:

  • Ctrl+Shift+K+A Expands All blocks of code
  • Ctrl+Shift+K+E Collapse current block of code
  • Ctrl+Shift+K+U Expand current block of code
  • Ctrl+Shift+K+T Toggle Current block (expand & collapse)
  • Ctrl+Shift+K+R Collapses all regions {$region 'comment'}..{$endregion}
  • Ctrl+Shift+K+P Collapse nested procedures
  • Ctrl+Shift+K+M Collapse all methods
  • Ctrl+Shift+K+C Collapse all classes
  • Ctrl+Shift+K+G Collapses down to primary Groups [Interface/Implementation]
  • Ctrl+Shift+K+N Collapses Namespace/Unit

This and others shortcuts in a little unknown wiki.

share|improve this answer
show 1 more comment

The command line switch -np starts Delphi without loading the last used project.

share|improve this answer
5  
add -ns for "no splash screen" and it improves the startup time noticeably. – JosephStyons Apr 20 '09 at 16:07

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.

share|improve this answer
2  
SyncEdit is the second feature called. You can also invoke it with Ctrl-Shift-J. – gabr Sep 19 '08 at 19:23

In the editor, you can hold down the alt key and drag select to perform a block selection.

share|improve this answer

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

share|improve this answer

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

share|improve this answer
show 3 more comments

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

share|improve this answer

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

share|improve this answer

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.

share|improve this answer
show 2 more comments

Incremental Search in the Object Inspector here

share|improve this answer

Hold [Ctrl] while using the mouse wheel to scroll quickly through code.

share|improve this answer

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;
share|improve this answer
1  
I believe kogus is looking for hidden treasure in IDE, not in the Delphi language. – gabr Sep 19 '08 at 15:05

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.

share|improve this answer
1 2

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