Dort wo die anderen var stehen sollte auch
Form2 : TForm
stehen. Und Du musst das Form auch erzeugen. Entweder "automatisch" im Projekt-Code (
dpr):
Application.CreateForm(TForm2, Form2);
oder aus dem anderen Formular heraus, z.b. in einem ButtonClick-Event:
Delphi-Quellcode:
Form2 := TForm2.Create(Application);
Form2.Show;