I have a MyForm form which is stored in Unit UnitMyFrom module. Of course, Delphi automatically added this code:
TYPE TMyForm = class(TForm) private public end; var MyForm: TMyForm;
but I removed the var declaration from this block. Someone said that this could cause problems with the IDE. It's true? Does the IDE need this variable?
EDIT:
MyForm is NOT automatically created. The user creates this form at runtime.
forms delphi
Ampere
source share