Im Normalfall lagert man solche Dinge in Procedure aus und ruft diese dann auf.
Delphi-Quellcode:
procedure TForm1.CheckBox1Click(Sender:TObject);
begin
DoSomething();
end;
procedure TForm1.DoSomething;
begin
DoSomethingWhatYouWant;
end;
Beim OnShow der Form rufst du dann nur noch die DoSomething Methode auf.