The tpagecontrol tag has no wiki summary.
8
votes
2answers
267 views
TLabel and TGroupbox Captions Flicker on Resize
So, I have an application that loads different plugins and creates a
new tab on a TPageControl for each one.
Each DLL has a TForm associated with it.
The forms are created with their parent hWnd as ...
5
votes
2answers
1k views
How can I reduce PageControl flicker in Delphi?
In Delphi 2009 I found that the flicker of a PageControl - which occurs during resizing of the form - can be reduced by setting its DoubleBuffered property to true.
However if I add controls to the ...
5
votes
5answers
4k views
How to implement a close button for a TTabsheet of a TPageControl
How can I implement a close button for a TTabsheet of a TPageControl like Firefox?
Edit:
Delphi Version: Delphi 2010
OS: Windows XP and up
4
votes
2answers
762 views
How can I change the background color of my TTabSheets?
Im Designing a Form with Delphi 2009, and Im trying to figure out the TPageControl element. Im trying to make separate dialogs for each tab. I can make the TTabSheets, and I can place my elements on ...
4
votes
2answers
1k views
How to convert Delphi TPageControl “tab index” to “page index”?
I'm using a TPageControl, where certain pages are not visible.
This breaks the normal 1:1 mapping of the TabIndex and ActivePageIndex properties.
In most places I can use ActivePageIndex (or ...
3
votes
2answers
133 views
Detect tab change in PageControl
I have a PageControl on my form and i wish to detect when the user is selecting another tab.
How can i do this ? I am using Delphi 7.
I didn't find any event and waisting time developing my own ...
3
votes
3answers
240 views
How to allow or forbid user to enter tab in pagecontrol?
I want to restrict users (based on special condition) to open a tab or not in a page control. ie, the user can click on the tab but it will not be displayed to him. Instead, a message will show to him ...
3
votes
2answers
267 views
How can I set the current page of a TPageControl?
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?
2
votes
2answers
204 views
Adding a context menu to the tab of a TPageControl
I wish to add a context menu to the (just the) tab of a TPageControl as distinct from the tab area (e.g like Delphi does to offer file/page options). I know I can do this with TRzPageControl but how ...
2
votes
3answers
277 views
Delphi: what component is (TDockTabSet ?) and how to work with it?
Is this TDockTabSet for Delphi (highlighted)? Or an other component? How to work with it. I want to use it instead of TPageControl but with the same functionality - like Tab Sheets.
One more ...
2
votes
4answers
365 views
How can I access the controls of a form embedded in a page control?
In Form1 I have PageControl. At run time my program creates tab sheets. In each TabSheet I create Form2. In Form2 I have a Memo1 component. How can I add text to Memo1?
2
votes
3answers
2k views
How can I change the orientation of the label on a TPageControl?
I'm new to Delphi (again - I used Delphi back in 1994). I now have Delphi 2009 Pro.
Coming from Java, I find the object inheritance very obscure.
My users want tabbed pages with the tabs on the ...
1
vote
1answer
129 views
Owner Drawn TPageControl OnMouse events fail to fire when docking a form as a tab
Using the example provided here How to implement a close button for a TTabsheet of a TPageControl combined with setting a forms parent to a tab sheet with matching caption I was able to take my ...
1
vote
1answer
449 views
Delphi TPageControl DrawTab problem
I set the TPageControl Style to Flat Buttons (tsFlatButtons), and change the tab's button color using the OnDrawTab event.
It works, but the button that is not-active has grey (btnFace color) border!
...
1
vote
3answers
189 views
Slow eventhandler in TPageControl.OnChange causes weird behaviour
When I add slow code to the OnChange event of TPageControl I run into problems.
If the code is fast and doesn't take a lot of time, things are fine.
However if the code takes a long time to return ...
0
votes
1answer
428 views
Delphi TPageControl not responding to clicks on tabs
I have an app with a TPageControl on the main form. The pagecontrol has several tabs. The app can be minimized to a tray icon. Sometimes after running minimized for a while, when I restore the main ...