Componentes.Terceros.jvcl/internal/3.36/1/examples/JvThread/JvThreadProj.dpr

14 lines
196 B
ObjectPascal
Raw Permalink Normal View History

program JvThreadProj;
uses
Forms,
fThread in 'fThread.pas' {Form1};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.