D7myChuangpin/创品基础资料维护/testDll.dpr

15 lines
183 B
ObjectPascal
Raw Permalink Normal View History

2024-07-23 20:18:14 +08:00
program testDll;
uses
Forms,
U_testdll in 'U_testdll.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.