Tagged Questions

tpanel is a VCL control implementing a generic panel control.It is defined in ExtCtrls.pas unit.

learn more… | top users | synonyms

7
votes
3answers
301 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' ...
5
votes
1answer
656 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!
4
votes
3answers
704 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 ...
4
votes
6answers
3k 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
2answers
697 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 ...
3
votes
3answers
489 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
1k 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 ...
3
votes
4answers
4k 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 ...
2
votes
2answers
1k 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 ...
1
vote
2answers
285 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 ...
1
vote
1answer
342 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.
0
votes
2answers
175 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
354 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 ...
0
votes
4answers
1k 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 ...
-1
votes
1answer
122 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 ...
-2
votes
1answer
72 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 ...