Hi,
I would like to have a pop up when mouse over a gridview.The pop up will show the detail of every row in grid view.I have search online but no soluiton on this.Does anyone has any idea on this? Does vb 2005 able to do this?
Printable View
Hi,
I would like to have a pop up when mouse over a gridview.The pop up will show the detail of every row in grid view.I have search online but no soluiton on this.Does anyone has any idea on this? Does vb 2005 able to do this?
Hi,
Assuming you are talking about a datagridview, this should do the trick:
BTW, I found this by searching for "gridview tooltip". (Just in case you need to search some more...)Code:DataGridView1.CurrentCell.ToolTipText = "Hi, there"
Hope this helped. Would be my first contribution! :)