1,184
社区成员
发帖
与我相关
我的任务
分享
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.