Reputation:
I have an application written in Delphi XE and I can maximize and minimize using Windows XP without problems. Using Windows 7 I can't restore the application after minimize it. I click the taskbar and the window don't appears. I have to kill the application using the system administrator. Any clues to find the problem?
Thanks
Upvotes: 0
Views: 1637
Reputation: 27384
alter your project according to
Application.Initialize;
Application.MainFormOnTaskbar := True;
Upvotes: 3