I have a code like this,
procedure TCustomComboGrid.CreateParams(var Params: TCreateParams);
begin
inherited CreateParams(Params);
with Params do begin
Style:= Style and not WS_CHILD or WS_POPUP or WS_BORDER;
....
end;
end;
and run well in windows using Delphi
I try to use it in lazarus, but the form does not WS_POPUP as I expected.
any suggestion ?