tpanel is a VCL control implementing a generic panel control.It is defined in ExtCtrls.pas unit.
5
votes
2answers
189 views
When to use TPanel FullRepaint?
I noticed that the resize flicker gets much better when I set TPanel.FullRepaint to False. Since the property exists and is True by default, there must be some reason for that.
How to decide whether ...
2
votes
1answer
396 views
Delphi Panels and custom component Z order issue
I'm working on a personal project and I have been running into lots of issues lately resulting in many questions, but hey, thats what SO is for right? ;)
Anyhow I tried making a transparent TPanel ...
0
votes
0answers
124 views
Show Transparent TImage on top of TPanels
I have a TabSheet that displays 6 rows and 7 columns of TPanels for a calendar. (Each TPanel parents a TRichEdit if that matters.) I would like to use a transparent TImage to show a circle around the ...
0
votes
1answer
122 views
In Win API how to get position of progressbar of another application, if it realized by TPanel of Delphi?
need to get position of progress-bar of another application. MS Spy++ points that is TPanel. It can change colour and has numeral position state. How to get all of this in Win API?
0
votes
3answers
328 views
TPanel in extra unit (with designer)
I want to create a single window application where several panels can be accessed from a small menu. I want to slide the panels in from one side.
I have done a small demo application and everything ...
-2
votes
1answer
533 views
Custom TPanel Border
I can make TPanel Border as Black by disabling "Ctl3D" and TPanel Border Style as "bsSingle" and TPanel BevelKind as "bkNone" and TPanel BevelInner "bvNone". But my need is to make TPanel Border as ...
-1
votes
1answer
501 views
How to remove completely the Panel border in delphi?
In my application, i've created a signup form and i need to show an Error Icon whenever an Edit is empty or contain some error. But the image haven't a Name property and therefor i am unable to to ...
1
vote
2answers
853 views
Flicker in Gradient panel
I have inherited a control from TPanel and in the Paint event handler, I have drawn the entire client rect using a gradient. This works perfectly fine until the user resizes.
When the panel is ...
7
votes
3answers
909 views
How best to create a TPanel with a close 'cross' button in the top right?
There are several third-pary controls (such as the Raize Components) which have a close 'cross' button 'option' (eg the page control). My requirement is simpler, I'd like to plonk a cross 'button' ...
0
votes
2answers
540 views
how to copy all the TLabels parented with a TPanel on delphi to another TPanel?
I have a TPanel on a delphi form, I want to copy all the TLabels
parented with this TPanel when i press a button and put them
in other panel.
Is there a way to do that?
Thanks.
0
votes
2answers
968 views
Controls on top, like TPanel can do?
My program is doing a time consuming task, and I would like to display a TImage in the middle of the application window, but it will not stay on top - my VST is always on top. However, when I use a ...
4
votes
2answers
2k views
How to eliminate the flicker on the right edge of TPaintBox (for example when resizing)
Summarization:
Say that I have a TForm and two panels. The panels are aligned alTop and alClient. The alClient panel contains a TPaintBox, whose OnPaint involve drawing codes.
The default value of ...
6
votes
4answers
1k views
how do I avoid this unwanted behaviour with Delphi's TSplitter and panels?
Included is a small project demonstrating my problem. I have a TPageControl aligned to the main form. On each of two tabsheets I have panels client aligned. On each of those panels I have 2 ...
1
vote
1answer
573 views
how to create a TCustomControl that behaves like Tpanel?
how do I create a TCustomControl that will behave like Tpanel? eg MyCustomComponent, that I can drop components in like labels, images etc.
3
votes
2answers
908 views
Delphi - Duplicate tpanel and tbuttons on second form
On my main form I have a TPanel containing buttons that act as a toolbar. I want to clone/copy this toolbar and the buttons and their funtionality to a second form.
Cloning the menu was simple using ...
5
votes
1answer
1k views
make a Delphi TPanel caption wrap
Is there a way to wrap the text in a TPanel.Caption in Delphi (in my case Delphi 6)?
thanks!
5
votes
6answers
6k views
Delphi: How to programmatically adjust visual ordering of components with align = alTop
I've got a form with a number of panels, each of which has Align=alTop, so they stack down nicely from the top of the form.
However, I want to dynamically change the appearance order of these panels ...
3
votes
3answers
854 views
Create an exact copy of TPanel on Delphi5
I have a TPanel pnlMain, where several dynamic TPanels are created (and pnlMain is their Parent) according to user actions, data validations, etc. Every panel contains one colored grid full of ...
3
votes
2answers
2k views
How to print TPanel contents?
I have TPanel. On this Panel there is an TImage descendant , few other panels with controls, etc. In fact, picture contains some diagram, while additional panels with labels are created during runtime ...
0
votes
4answers
2k views
Delphi Component Not Painted
I have component (descendat of TPanel) where I implemented Transparency and BrushStyle (using TImage) properties.
All it's ok when I have one component of this type on the form. Bun when I pun on the ...
3
votes
4answers
8k views
How to draw on a TPanel
I need to draw on a TPanel, ideally directly so I don't have another component on top of it getting in the way of mousevent-event trapping (I want to draw a little "size-grip" on it). How should I go ...