Hi,
I have application level global variable called OpenFormType(string). I want to execute following procedure only if OpenFormType='1'
procedure TForm1.CreateParams(var Params: TCreateParams);
begin
inherited CreateParams(Params);
with Params do
Style := Style or ws_Border or ws_ThickFrame;
end;
How do I do that? Please help.
Thank you.
I have application level global variable called OpenFormType(string). I want to execute following procedure only if OpenFormType='1'
procedure TForm1.CreateParams(var Params: TCreateParams);
begin
inherited CreateParams(Params);
with Params do
Style := Style or ws_Border or ws_ThickFrame;
end;
How do I do that? Please help.
Thank you.