Hi, everybody.
Does anybody know if it's possible to disallow to highlight the whole column when you click on column's header? Like a property of MSFlexGrid control AllowBigSelection=False.
Thank you in advance.
Printable View
Hi, everybody.
Does anybody know if it's possible to disallow to highlight the whole column when you click on column's header? Like a property of MSFlexGrid control AllowBigSelection=False.
Thank you in advance.
Come on, gurus.
Is there a constans for a DataGrid, that I can pass to API to do that?
you could try this. Not the best solution in the world, but it works.
Code:Private Sub dgAllRecords_HeadClick(ByVal ColIndex As Integer)
dgAllRecords.ClearSelCols
End Sub
Thanks, Lain.
Doesn't look so good, but does a job.
Do you know about constans for DataGrid?