Click here to Skip to main content
15,884,176 members
Articles / Multimedia / GDI+
Article

Balloon tooltips UserControl in VB.NET

Rate me:
Please Sign up or sign in to vote.
2.52/5 (13 votes)
11 Apr 2005 62K   973   18   4
How to create balloon tooltips using graphic paths to highlight someting on your form.

Sample screenshot

Introduction

This is a simple application that I created while I was working on one of my other applications. It might not be exactly what you are looking for but it does what I wanted to achieve. On top of that this is my first submission to CP, a great source of information.

All this application does is allows you to create balloon tips like in the image above to highlight any area of your form/application.

Technique:

Inside control:

This simple user control utilizes the GDI+ polygon:

VB
Dim p As Point() = {New Point(0, 0), New Point(100, 0), _
         New Point(100, 50), New Point(170, 120), _
         New Point(70, 50), New Point(0, 50)}

mpath.AddPolygon(p)

Using the control:

In your client application, remember to add a control reference in you tool box to BaloonToolTip.dll.

Then simply drag and drop the control on your form to use it.

VB
BaloonToolTip2.BackColor = Color.Red

BaloonToolTip2.ForeColor = Color.Yellow

BaloonToolTip2.ShowBaloonToolTip("Hello Tip going left", _
                         btnShow.Left, btnShow.Top, False)

The last parameter PointingRight is a Boolean type. If set to True, the control would move the balloon towards left and the pointer would move towards right and vice versa.

In the sample, Xpos and YPos are taken from btnShow's Left and Top respectively.

Enjoy!!!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Pakistan Pakistan
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionNot appearing Pin
ChrisRaisin10-Aug-22 3:52
ChrisRaisin10-Aug-22 3:52 
GeneralMy vote of 2 Pin
AxelM27-Sep-09 20:47
AxelM27-Sep-09 20:47 
Questionrecycle bin Pin
syriast30-Jul-06 3:40
syriast30-Jul-06 3:40 
AnswerRe: recycle bin Pin
Limo Driver2-May-07 7:27
Limo Driver2-May-07 7:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.