Zitat von
Sir Rufo:
Application.MainFormOnTaskbar := False
Hallo was mache ich denn jetzt noch falsch bitte?
Application.Initialize;
Application.MainFormOnTaskbar := False;
Application.CreateForm(TForm1, Form1);
Application.Run;
Und trotzdem "Undeclared Identifier: 'MainFormOnTaskbar'"?
PS: Ich nutze Delphi 7 Pro. Geht das da überhaupt?
Update: Hey, geklappt hat nun folgendes bei mir:
procedure TForm1.FormCreate(Sender: TObject);
begin
ShowWindow(Application.Handle, SW_HIDE) ;
SetWindowLong(Application.Handle, GWL_EXSTYLE, getWindowLong(Application.Handle, GWL_EXSTYLE) or WS_EX_TOOLWINDOW) ;
ShowWindow(Application.Handle, SW_SHOW) ;
end;
end.
Trotzdem würde mich interessieren warum bei MainFormOnTaskbar dieser Undeclared Identifier Error kommt.