×
Here's how to do this:
  1. In Delphi go to the menu option Project -> View Source.
  2. Add the Windows unit to the uses clause.
  3. Add Application.ShowMainForm := False; to the line after. ...
  4. Add: ShowWindow(Application.Handle, SW_HIDE); to the line.
Jan 23, 2021 · Hello, I was trying to use `Application.MainFormOnTaskbar := False` in a FMX application, but it doesn't exits there.
People also ask
Hi all.. Please would someone tell me how to hide the application icon on the task bar. I am using a tray icon and have no need for a taskbar icon.
Jan 6, 2020 · Remove line: Application.MainFormOnTaskbar := True; Use these commands: ShowWindow(Application.Handle,SW_HIDE); ShowWindow(Application.
Nov 10, 2016 · I want to either hide the main form's icon ... The little thumbnails of open applications do not have the application icon next to their title.
These tell the icon to process application messages, use the application's icon and its tip, respectively. Once we've set up all that, then it's a simple ...
Sep 5, 2009 · In delphi it is the same, Application.Icon.Handle.. You can hide the main form and it is still on the taskbar. I have 4 forms in my program.
Jun 28, 2017 · hi All, i would like to hide the form icon in the app form but leave the border icons and also the icon in the task bar.