Click here to Skip to main content
15,867,835 members
Please Sign up or sign in to vote.
3.00/5 (3 votes)
See more:
I already have a code that show a tool tip balloon on the selected cell of the datagridview using the mousehover event. But the problem is i always need to point the mouse outside the system before the tooltip show. What i want is that whenever i hover the mouse pointer on the selected cell it will show the balloon tool tip.. Note that ONLY in the selected cell. Got some idea on how to do it? Thanks a lot..


OR if you have some idea on how will i show the balloon tool tip on a cell whenever it is hover WITHOUT clicking it, it is better.. Thanks again!!
Posted
Updated 24-Jan-13 14:06pm
v2

1 solution

Make sure ShowCellToolTips on DataGridView set to True
to add tooltip on cell 1,1 for example:
VB
DataGridView1(1, 1).ToolTipText = "this is tooltip for cell 1,1"
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900