How to clear the "Parameters" field in the "Run" - "Parameters" menu?

I am using the CodeGear RAD Studio IDE.

To test my application with command line parameters, I used the "Parameters" field on the "Run → Parameters" menu several times.

But every time I provide it with a new value, it cannot be removed from the drop-down list.

I need to clear this field (erase all values), since in some cases there is information about them that I do not want to share with people who can sometimes use my car.

How to clear this field?

+8
ide delphi delphi-2007
source share
1 answer

The list of Delphi 2007 parameters is stored in the Windows registry at HKEY_CURRENT_USER\Software\Borland\BDS\5.0\History Lists\hlRunParameters place

enter image description here

enter image description here

To clear this list, delete the ItemN entries and set the Count value to 0.

+12
source share

All Articles