Hello All Friends..
I create a dll and insert in form i compile it successfully.
I Need Help?
The Form caption does not show in windows task bar.
Hello All Friends..
I create a dll and insert in form i compile it successfully.
I Need Help?
The Form caption does not show in windows task bar.
type
TMyForm = class(TForm)
protected
procedure CreateParams(var Params: TCreateParams);
end;
implementation
procedure TMyForm.CreateParams(var Params: TCreateParams);
begin
ExStyle := ExStyle or WS_EX_APPWINDOW;
end;