I have the code following:
Code:Private Sub dgPackage_CellToolTipTextNeeded(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellToolTipTextNeededEventArgs) Handles dgPackage.CellToolTipTextNeeded e.ToolTipText = "Me" End Sub
This code will make every column to show the tooltip as long as mouse hover to the column. May I know how can I change the code so that only when the mouse hover on the first column then only it will show?


Reply With Quote