This hint will be reported during compilation of delphi:
[Delphi]
[Pascal Hint] *** Frm. pas (111): H2365 Override method *** Form. Createparams shocould match case of ancestor TCustomForm. CreateParams
This is being rewritten.
[Delphi]
Procedure CreateParams (Var Params: TCreateParams); override;
When the prompt appears, the prompt is carefully checked and found to be a big and lowercase error, the upper case P in CreateParams is written as the lower case p, so this prompt will be given, go to the form method and check that it is uppercase P. Change it to OK and solve the problem.
Another Error
[Delphi]
[Pascal Hint] *** Frm. pas (109): H2269 Overriding virtual method '*** Form. createParams 'has lower visibility (private) than base class' *** Form '(protected)
The hint provided by the delphi compiler. The hint indicates that the permission range of the method is unreasonable. I checked the following results and found that the results were originally put under protect under private, so I will give this prompt, change the location, and there is no prompt. Check the delphiform method again, which is put under protect. OK!