user1151835
user1151835

Reputation:

Restore delphi form windows 7

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

Answers (1)

bummi
bummi

Reputation: 27384

alter your project according to

  Application.Initialize;
  Application.MainFormOnTaskbar := True;

Upvotes: 3

Related Questions