Text inside a picturebox

1

I want to do this in PictureBoxes so when I move the mouse it shows the message that I wrote.

How can I do this?

Remembering I use the Visual Basic 2010

    
asked by anonymous 11.02.2016 / 04:53

1 answer

1

You can use a ToolTip for this.

First drag a% of the ToolBox to your form - it will not be shown inside the form, but rather in a footer, see the image

Now all form components have a property called ToolTip .

Ready.

Now you only need to set this property with the text you want to appear on the ToolTip .

    
11.02.2016 / 10:58