Hallo,
ich bin gerade auf Delphi2010 umgestiegen und war erstaunt, dass meine Projekte nach dem Start alle doppelt in der Taskleiste vertreten waren.
Hier der Projekt-Quellcode:
Delphi-Quellcode:
SplashForm := TSplashForm.create(nil);
SplashForm.show;
SplashForm.update;
application.Initialize;
application.MainFormOnTaskBar := true;
application.CreateForm(Tdm, dm);
application.CreateForm(THauptForm, HauptForm);
application.Run;
Wenn man SplashForm rausnimmt, ist alles ganz normal. In Delphi2007 ist das bisher ebenfalls kein Problem gewesen.
Was ist hier falsch?
Gruß Uli