Ian Branch 127 Posted January 2, 2020 Hi Team, I can make a form have it's own button on the Windows Task Bar using the following.. ... protected procedure CreateParams(var Params: TCreateParams); override; ... ... procedure TAudioForm.CreateParams(var Params: TCreateParams); begin inherited; Params.ExStyle := Params.ExStyle or WS_EX_APPWINDOW; Params.WndParent := 0; end; All good, however, it uses the Main App/Form Icon. Is there any way to inject a different icon? Regards & TIA, Ian Share this post Link to post
Ian Branch 127 Posted January 2, 2020 Hi David, So obvious when you think about it. 😞 Thank you. Regards, Ian Share this post Link to post