I have a dataGridView that I programmatically create where I want to set toolTipText differently for each row by setting toolTipText in the first column / cell of each row. I know that I can do this by following these steps:
myDataGridView.Rows(n).Cells(0).ToolTipText = varContainingText
It works great. However, it only displays for the default time period (think 5 seconds). I would like to install autoPopDelay, but cannot figure out how to do this. I can not do something like:
myDataGridView.Rows(n).Cells(0).autoPopDelay = 10000
This is not a valid link. How to set autoPopDelay for this?
source share