I want to show popup button or fancy message (with coloured background, etc) just under right-bottom corner of particular cell of the current row.

For now I only figured how to get grid coordinates:
x = DBGrid.DataSource.DataSet.RecNo
y = DBGrid.Columns[index]

There is also TCustomGrid.CellRect, which would do what I want, but it's protected and I don't want to inherit and create another component class.

One crazy workaround I can think of is to save TRect-s in onDrawColumnCell event to some array.

So, what do you think ?

EDIT
How do I get screen coordinates of, say, second cell in the current row ?

link|improve this question

71% accept rate
@downvoter: is question not constructive or too open ended or not a real question ? Could you elaborate, so I could improve it ? – Alexander Malakhov Feb 20 at 3:29
I'm not the downvoter, but I'd suspect it's because your question isn't clear. Do you want the currently selected cell, the cell under the mouse, the cell being clicked, or something else? – Ken White Feb 20 at 5:43
@KenWhite: thanks for feedback. Is it better now ? – Alexander Malakhov Feb 20 at 6:19
It's a little better. None of your solutions will work, BTW. RecNo doesn't necessarily mean anything; index order can affect row ordering, Columns[Index] gives you column but not row, and saving coordinates in OnDrawColumnCell won't help, as it has no relationship to the current row in the grid except during the time the cell is being drawn. (I don't have a solution to offer (yet), but I can see the flaws in what you're thinking about doing.) – Ken White Feb 20 at 6:39
feedback

1 Answer

up vote 4 down vote accepted

You can get the current cell coordinates, using a little deception. :)

// implementation
type
  THackDBGrid=class(TDBGrid);

// Where you need the coordinates
var
  CurrRow: Integer;
  Rect: TRect;
begin
  CurrRow := THackDBGrid(DBGrid1).Row;
  Rect := THackDBGrid(DBGrid1).CellRect(ColIndexYouWant, CurrRow);
  // Rect now contains the screen coordinates you need, or an empty
  // rectangle if there is no cell at the col and row specified.
end;
link|improve this answer
works! Thanks a lot. Btw, I've seen this solution once or twice while googling, but somehow thought that's not it – Alexander Malakhov Feb 20 at 7:50
for those interested why this works, it's called "Protected Hack". The technique exploits the fact that protected members of the class are visible to all methods defined in the same unit as the class. Short example here on SO, more elaborate on by Zarko Gajic – Alexander Malakhov Feb 20 at 8:29
2  
If this answers your question, may I ask why you're not accepting it as correct? – Ken White Feb 20 at 8:36
actually I've accepted it :), but then decided to wait a little to let others to answer (and upvote your answer, btw), maybe someone will come up with solution without a hack. The truth is virtually no one willing to answer will look at closed question. – Alexander Malakhov Feb 20 at 9:24
3  
actually this is the best solution. you could change THackDBGrid to TDBGridAccess if it makes you less stressed :) casting TDrawGrid(DBGrid1).CellRect will also work, but I like this solution less because TDrawGrid.CellRect implementation might change (for now it's Result := inherited CellRect(ACol, ARow)). – kobik Feb 20 at 14:53
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.