![]() |
Order and save right now!
20% off with the 729824315 dicscount code for Ultimate Pack and any another product for Delphi from Greatis Programming! |
⤷ Create a window system modal
For create a new window modal you should remove this line from the project fileApplication.CreateForm(TForm2, Form2);
And use in your program this standard construction:
with TForm2.Create(nil) do
try
ShowModal;
finally
Free;
end;
-
More for developers