problem Phenomenon: tip can ' t load PACKAGE:DCLITE70.BPL
The cause of the problem: It is all Window2003 Data Execution Prevention (DEF).
Workaround:
Win2003server SP1 + delphi7, when starting the Delphi will be prompted can ' t load PACKAGE:DCLITE70.BPL, after entering the options when the exception occurs.
Workaround:
Right-click My Computer. Click Properties.
In System Properties, click Advanced.
In performance, click Settings.
In Performance options, click Data Execution Protection.
Click Add. Select the Delphi7 installation directory, and then select Delphi32.exe in the Bin directory.
Application Restart Delphi.
PS:
Reference
Data Execution Prevention (DEP) is a processor feature supported by Microsoft Windows XP Service Pack 2 (SP2)/windows2003, which prohibits code execution in areas of memory marked as data storage. This feature is also known as "Do not execute" and "Execute protection". When you try to run code in a tagged data page, an exception occurs immediately and prevents code execution. This prevents the attacker from using code to overflow the data buffer and then executes the code. Data Execution Prevention (DEP) helps prevent viruses and other security threats from damaging, and their approach is to execute malicious code from memory locations that are available only to Windows and other programs.
In other words, this DEF Data Execution protection is the purpose that MS is exploited by an attacker to create a data buffer overflow in order to protect against any unknown vulnerability in its system. The default is to perform the protection, so this error is caused to Delphi7.
Question-[delphi] Tip can ' t load PACKAGE:DCLITE70.BPL workaround