Componentes.Terceros.jcl/official/2.1.1/examples/windows/debug/mttest/JclDebugMTTest.dpr
2010-01-18 16:51:36 +00:00

14 lines
235 B
ObjectPascal

program JclDebugMTTest;
uses
Forms,
JclDebugMTTestMain in 'JclDebugMTTestMain.pas' {MTTestForm};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TMTTestForm, MTTestForm);
Application.Run;
end.