Delphi – How to set the current page of a TPageControl

delphitpagecontrol

I am using a pagecontrol component and I need to add a button and click it to go to a specified page.

How can I do this please?

Best Answer

Add a button to the form and write an OnClick event handler like this:

procedure TMyForm.Button1Click(Sender: TObject);
begin
  PageControl1.ActivePage := TabSheet1;
end;
Related Topic