I need to show the tooltips over a datagridview cell and that is currently achived using the tooltiptext of the datagridview cell property.
I just need to increase the default duration of time that is tooltip is visible any quick ideas please
I need to show the tooltips over a datagridview cell and that is currently achived using the tooltiptext of the datagridview cell property.
I just need to increase the default duration of time that is tooltip is visible any quick ideas please
To do this, you need to set the ShowCellToolTips
property of your DataGridView to false
, and rather use a standard tooltip control, controlled using the CellMouseEnter
event of the DataGridView. You can then set the AutoPopDelay
property of the tooltip to the number of milliseconds that you wish the tool tip window to show for.
Further details and VB.Net sample code for using a standard ToolTip control with a DataGridView can be found here.