D7djJingfeng/检验管理/testDll.dpr
“zfp” 84e408b57e 1
2025-01-21 15:28:12 +08:00

15 lines
183 B
ObjectPascal

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