Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Application.MainFormOnTaskbar := False; not hiding application from taskbar

Tags:

delphi

pascal

Why setting Application.MainFormOnTaskbar to False is not preventing the application from showing on taskbar?

Please help. Thanks.

like image 858
emurad Avatar asked Dec 10 '10 01:12

emurad


1 Answers

Because that's not what it does. MainFormOnTaskbar makes it so that the main form shows up as a taskbar button instead of the application itself. If you want to make an app with no presence on the taskbar, see this article.

like image 127
Mason Wheeler Avatar answered Sep 28 '22 07:09

Mason Wheeler