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?
Add a button to the form and write an OnClick event handler like this:
procedure TMyForm.Button1Click(Sender: TObject);
begin
PageControl1.ActivePage := TabSheet1;
end;