Essentially, balloon help is this - if you hover your mouse for about 1 second over a certain button, the computer displays a short one-sentence or one-word description of what that button does. Most development environments just require you to set the balloon-help-text property (or something similar) to the appropriate text.
Thanks for responding to this request!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
According to my research, balloon help is not integrated in MFC and is quite difficult to implement. One has to build the following infrastructure:
1. Start counting time when the mouse is over a region that has a tip to display and abort the count if the mouse leaves the region.
2. Drawing a tool tip window and deleting it after a specified time frame.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=841265
Originator: NO
Thank you for your compliments again.
I am sorry, but I am not familiar with programming balloon help.
Are you?
Logged In: YES
user_id=498997
Originator: YES
Yes, check out: http://en.wikipedia.org/wiki/Balloon_help
Essentially, balloon help is this - if you hover your mouse for about 1 second over a certain button, the computer displays a short one-sentence or one-word description of what that button does. Most development environments just require you to set the balloon-help-text property (or something similar) to the appropriate text.
Thanks for responding to this request!
Logged In: YES
user_id=841265
Originator: NO
According to my research, balloon help is not integrated in MFC and is quite difficult to implement. One has to build the following infrastructure:
1. Start counting time when the mouse is over a region that has a tip to display and abort the count if the mouse leaves the region.
2. Drawing a tool tip window and deleting it after a specified time frame.