Delphi 7 includes automatic completion

I am new to Delphi. I am using the Delphi 7 IDE. How can I enable autocomplete when I write code in the Delphi 7 IDE?

thanks

+7
source share
2 answers

From the menu, select Tools | Editor options. Select the Code Analysis page. Verify that code verification is complete.

enter image description here

You can call it from the keyboard using CTRL + space.

Note This is all from Delphi 6, but Delphi 7 is almost the same as I remember.

+7
source

It should be the default. You can try to force it to use ctrl-space. Please note that this does not always work if your code contains errors (especially in the block structure) or in debug mode.

+2
source

All Articles