it doesnβt matter, but as a rule, I put my code below, this compiler actually switches the link to the pas file with the dfm file (pas + dfm = form!), here are some tips.
unit Unit1; interface uses .... type TForm1 = class(TForm) private { Private declarations } public { Public declarations } local_var: String; function myFormFunction:String; end; var Form1: TForm1;
source share