Hi,

I want to place every forms buttons in the taskbar

And i use this code for it :


PROCEDURE createparams(var params: TCreateParams); override;
//
PROCEDURE TfrmLogin.CreateParams(VAR params: TCreateParams);
BEGIN
//
 inherited CreateParams(params);
 params.ExStyle := params.ExStyle OR WS_EX_APPWINDOW;
END;

But i have a problem with it

When a form get focus on the project

Form example user click or active form 3
All of other forms of project are appearing as "Bring to front"
On the top of all windows forms

I don't want it

What should i do ?!

Reply via email to