Private Sub Grid1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
If ???????????? Then Grid1.ToolTipText = <contents of cell>
End Sub
How can I use the X and Y coordinates to determine which cell the mouse pointer is currently over?
The implementation of Grid I am using only has a MouseMove event and not a MouseOver event.
