Delphi XE - [DCC Error]: E2004 Identifier updated: "System"

I don’t understand why this error occurs ... Is this an error in XE or is there something wrong with the IDE settings?

enter image description here

+4
source share
1 answer

The System block is automatically used by all other devices in the Delphi program. Therefore, you cannot use it again. Just remove System from your uses .

The documentation states:

The System block and SysInit block SysInit automatically used by each application and cannot be explicitly specified in the uses .

+10
source

All Articles