Hallo,
TApplication befindet sich in der
Unit Forms.
Normalerweise müsste folgender Code (Projekt-Quelltext) das entsprechende tun:
Delphi-Quellcode:
Application.Initialize;
Application.Title:='Mein Programm';
// --->
Application.ShowMainForm:=False;
ShowWindow(Application.Handle, SW_HIDE);
// <---
Application.CreateForm(TMyProgForm, MyProgForm);
Applicstion.Run;