I opened the main program and several forms, but I want to call TForm1 out in the main program.
Do I have to write the procedures? How?
This is how the program looks like now:
program project1;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Classes, unit1, unit2, unit3, SysUtils, FileUtil, Forms, Controls,
Graphics, Dialogs, StdCtrls, Interfaces;
{ you can add units after this }
begin
end.
How to call the form out?