Registriert seit: 7. Aug 2008
Ort: Brandenburg
1.464 Beiträge
Delphi 12 Athens
|
AW: Delphi MainForm ruft beim Schliessen kein OnFormDestroy auf
19. Jun 2019, 13:22
Eventuell auch mal so versuchen:
Delphi-Quellcode:
Application.Initialize;
Application.MainFormOnTaskBar := True;
Application.CreateForm(TFMainForm, FMainForm);
Application.Run;
|