Click here to Skip to main content
15,888,321 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hallo, I have a program (desktop application), which display tooltip when I over with mouse on image with current position. Now it works on mouseClick, mouseDown and MouseHover but I need mouseOver, can anyone advice me how to do it? Ty a lot.

private void Form1_MouseDown(object sender, MouseEventArgs e)
     {
         if (e.X >= 89 && e.X <= 139 && e.Y >= 54 && e.Y <= 122)
         {
             tootltip.SetToolTip(this, "image");
         }
     }
Posted

follow this link till last comment may be you will get an answer see last comment also


http://stackoverflow.com/questions/873175/displaying-tooltip-on-mouse-hover-of-a-text[^]
 
Share this answer
 
v3
Comments
Member 10808387 5-Mar-15 5:13am    
It is in C# language
Hi,

Ref this article : ToolTip With Image C#
 
Share this answer
 
Comments
Member 10808387 5-Mar-15 6:06am    
I dont need tooltip with image but when i hover on image tooltip shows him self.
[no name] 5-Mar-15 6:16am    
Eg: You want a personal information tool tip when u mouse hover on a image?
[no name] 5-Mar-15 6:30am    
try this : http://jsfiddle.net/nanoquantumtech/FWTKn/

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