`TPageControl` is a Delphi VCL control displaying a set of pages used to make a multiple page dialog box. It is defined in the `ComCtrls.pas` unit.
Questions tagged [tpagecontrol]
49 questions
0
votes
1 answer
How to scroll a TTabSheet
I'd like to scroll an individual TabSheet within a PageControl if the height of the sheet becomes less than a value.
If I put a ScrollBox on the TabSheet, the themed background of the TabSheet is not painted (it's overwritten by the single color…

Steve
- 2,510
- 4
- 34
- 53
0
votes
0 answers
PageControl Vertical caption
I have a PageControl with the TabPosition set to "tpLeft".
You notice when you set that property the caption of the tabs becomes Vertical too,
I but i want these captions to appear in a normal horizontal way,
tried changing the TabHeight, but it…

Ouerghi Yassine
- 1,835
- 7
- 43
- 72
0
votes
1 answer
Delphi: scroll PageControl tab area to the right
After runtime creation of new tabs, I see that last tab is overlapped by system [<] and [>] buttons in the tab header area. How to scroll this area to the rightmost position? Img from one c++ app which looks same as my app. Delphi 7.

Prog1020
- 4,530
- 8
- 31
- 65
0
votes
2 answers
How to safe add a Tabsheet to a PageControl in TIdCmdTCPServer OnConnect event?
I want to add a Tabsheet dynamically to a PageControl when a client connected to my IdCmdTCPServer same as this code:
procedure TForm1.IdCmdTCPServer1Connect(AContext: TIdContext);
var
ATabSheet: TTabSheet;
begin
ATabSheet :=…

Farshad H.
- 303
- 4
- 16