Tagged Questions

7
votes
2answers
1k views

Delphi How to use TGridPanel

I want to use Delphi's 2009 TGridPanel, but I don't understand how to use it correctly. For example, I want to have a GridPanel with 4 columns which should have each 25% percent of the GripPanels ...
2
votes
2answers
181 views

Getting the cell clicked on in a TGridPanel

I have a TGridPanel on a form and wish to add a control to a specific "cell" that is clicked on. I can get the point easily enough: procedure TForm1.GridPanel1DblClick(Sender: TObject); var P : ...
1
vote
2answers
652 views

Finding out position of a control inside TGridPanel

How I can find out the position (row and column index) of controls inside TGridPanel? I'd like to use common OnClick event for number of buttons and need to know the X,Y position of the button. I'm ...