I'm looking through two copies of code and in one I have myForm.Hide and another I have myForm.Visible := False. I can't remember why I changed this, if one was a bug fix or whether there is any difference at all.
There is no difference for Hide
. The VCL code is:
procedure TCustomForm.Hide;
begin
Visible := False;
end;
But Show
is a bit different:
procedure TCustomForm.Show;
begin
Visible := True;
BringToFront;
end;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With