1,183
社区成员




const
Test = 'Test';
begin
if GlobalFindAtom(Test) = 0 then
begin
GlobalAddAtom(Test);
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm, Form1);
Application.Run;
GlobalDeleteAtom(GlobalFindAtom(Test));
end;
end.