Re: [Lazarus] dbl click on a grid

2010-03-11 Thread Andrea Mauri
Il 02/03/2010 10.56, Andrea Mauri ha scritto: I also noticed that the click event is not raised if I click on a fixed row/column while the dblclick is raised also if performed on a fixed row/column. Is it a possibility to introduce a headerdblclick event like the headerclickevent? andrea --

Re: [Lazarus] dbl click on a grid

2010-03-02 Thread Andrea Mauri
Il 01/03/2010 22.03, Hans-Peter Diettrich ha scritto: Check the clicked row in your event handler. If row = 3 and I click on a fixedrow the row property still remains 3. So how can I check that the dblclick is performed on a fixed row? My problem is that if the user click on the fixed row the

[Lazarus] dbl click on a grid

2010-03-01 Thread Andrea Mauri
dear all, in my application I have some grids (TStringGrid) where the dblclick should fire some events related to the selected row. I would like that the dblclick events will be raised only if the dblclick is performed on non-fixed rows. How can I do that? andrea --

Re: [Lazarus] dbl click on a grid

2010-03-01 Thread Hans-Peter Diettrich
Andrea Mauri schrieb: in my application I have some grids (TStringGrid) where the dblclick should fire some events related to the selected row. I would like that the dblclick events will be raised only if the dblclick is performed on non-fixed rows. How can I do that? Check the clicked row