Achieve tooltip like this in VB.net?
.net, tooltip, vb.net, windows, winforms
Solution
The built-in ToolTip component creates a tooltip that looks pretty close. Set its IsBalloon property to True. Getting it exactly like Word is not practical, the component doesn't provide any way to override the TOOLINFO.uFlags value so you could specify TTF_CENTERTIP..
Problem
I found this tooltip that pops up in MS Word 2010 when someone enters a copy count above 32767, I would like to know how (and if) it is possible to implement a tooltip such as this within a VB.net windows form application.