17 lines
297 B
Plaintext
17 lines
297 B
Plaintext
program AdvancedText;
|
|
|
|
uses
|
|
Forms,
|
|
umain in 'umain.pas' {fmain},
|
|
utext in 'utext.pas' {ftext};
|
|
|
|
{$R *.RES}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.Title := 'Advanced Text Demo';
|
|
Application.CreateForm(Tfmain, fmain);
|
|
Application.CreateForm(Tftext, ftext);
|
|
Application.Run;
|
|
end.
|