balloon tooltip

dubem1

Newcomer
Joined
Dec 5, 2002
Messages
20
Hello

I would like to use balloon tooltip on any control of my form. Is it possible?

If it's not, is it possible to use a square shadow multilines tooltip like the one used when you click on the ? button of a form in windows?

Thank you
Martin
 
I've a code I made for a new and enhanced version of the systray icon, can send balloon tooltips, contextual menu, systray icon and more.
is written in Visual Basic .NET, answer me if you will like the source code for the library

Regards:D
RSV
 
iebidan, I would be interested in the source you were speaking of. If possible, please post it for everyone. Remember that it can't contain executables or it will be deleted, so only the source and maybe an example is needed. Thank you
 
Well, actually posting it will be kind of difficult 'cause the size of the code (too many lines), but I'll be glad to send it to whoever wants it, just post your mail, or send me an email to rsandoval@clementecamara.biz and I'll send back the code...

Regards
 
Ok, I'll email you if you would like, but one alternative will be for you to actually just zip up your sourcecode and post it as an attachment here. It allows for over 2 mb, which is probably plenty for just sourcecode.
 
I can suggest the use of regions.

Visual Basic:
Dim GP As New System.Drawing.Drawing2D.GraphicsPath(Drawing.Drawing2D.FillMode.Alternate)
'......build up your balloon shape window here......e.g. GP.Addline(...)
Me.Region = New Region(GP)

Add the above code into a forms load event and youve got a balloon shape window..

Cheers
 
I am sorry but this is not what I am looking for. I am looking for balloon tooltip I can place on any control of my forms. Textboxes, labels, buttons.

Thank you
 
Back
Top