![]() |
Order and save right now!
20% off with the 729824315 dicscount code for Ultimate Pack and any another product for Delphi from Greatis Programming! |
⤷ Run application without focus
To run form without focus, use ShowWindow function with SW_SHOWNOACTIVATE parameter.
procedure TForm1.FormCreate(Sender: TObject);
begin
ShowWindow(Handle, SW_SHOWNOACTIVATE);
end;
-
More for developers