
FlexGrid mouse-click on fixed... or non-fixed columns?
Try the Flexgrid's MouseCol property. This gives the column that the mouse
is over.
Sub MSFGrid_Click()
Debug.print "You Clicked Column " & MSFGrid.MouseCol
End Sub
Quote:
> I have a VB6 FlexGrid.
> What's the correct way to detect whether a user has clicked on the first
column (a fixed column)...
Quote:
> or on the
> the 2nd column (a non-fixed column)?
> Seems like my CLICK or MOUSEDOWN events containing Grid1.Col report the
same... for either
> occurrence.
> How do I distinguish between them?
> Thanks.