Examples Delphi

Title: Hide application from task bar (another solution)
Question: Preventing application button showing in the task bar
Answer:
include this in FormCreate event
SetWindowLong(Application.Handle, GWL_EXSTYLE, GetWindowLong(Application.Handle, GWL_EXSTYLE) or
WS_EX_TOOLWINDOW and not WS_EX_APPWINDOW );