Screen width is just not enough to display some text fields. I don't know how to auto-wrap them and I doubt that it can be easily done.
So, I thought that I would do something like
procedure TForm1.FormMouseMove(Sender: TObject;
Shift: TShiftState; X,Y: Integer);
var column, row : Integer;
begin
myDbGrid.MouseToCell(X, Y, column, row);
myDbGrid.Hinst := myDbGrid.Cells(column, row); // <==== ooops
end;
or, maybe do it in OnShowHint
and get the mouse coords & translate them to column & row (more efficient)
but, of course, TDbGrid doesn't have Cells
. Any idea how I can set the hint for the control as the user moves the mouse over the "cells" of the grid?
Use this code: