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?

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

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

procedure TMyForm.Button1Click(Sender: TObject);
begin
  PageControl1.ActivePage := TabSheet1;
end;
link|improve this answer
5  
@Satch3000, good suggestion but note that this will not trigger an OnPageChange event for the PageControl, if you want that to happen you'll need to call that event in your Button1Click explicitly. – Johan May 26 '11 at 9:41
feedback

You can use ActivePageIndex:

procedure TForm1.Button1Click(Sender: TObject);
begin
  PageControl1.ActivePageIndex := 0;
end;
link|improve this answer
1  
This is equivalent to using ActivePage, the two properties are synonymous – David Heffernan May 26 '11 at 9:58
2  
I would still prefer setting ActivePage, because the index of a page is variable. Or at least: has that ability. The reference to a page on the other hand will always stay the same. And most likely will the code be more readable with a self-descriptive variable name than with a meaningless digit. – NGLN May 26 '11 at 15:44
2  
I think it depends on situation. Many times I used ActivePageIndex set to 0 on formShow to be sure that first one will be visible on start. After rearenging tabsheets code its still ok. – Jarek Bielicki May 26 '11 at 16:39
1  
Well, that's hardly a situation, but just a knack to reset the changes you've made in the designer. ;) Good tip though! +1 – NGLN May 26 '11 at 16:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.