问题
Can some one tell me what the name of the following popup window is:

How do I create such a popup for my application?
回答1:
To be more specific, this is indeed called a Notification (a specific type of balloon)see also here and the icon from which it comes from is called a Notification area Icon.
The area of the screen in which this icon is located is called the Notification Area. This is not specific to Windows - other operating systems have their own form of Notification Areas.
The correct way to manage a Notification Icon (or more, if you need to) from Windows is to use the Shell_NotifyIcon API.
You can also use the numerous components available online wrapping this functionality (CoolTrayIcon is a prime example, although it is a bit bloated). You can make your own too, it's fairly easy.
Remember to follow the MSDN guidelines for correct use of this icon and good practices.
回答2:
I seem to have found out the answer, it is called a balloon notification . the relevant code to create one is found at : http://swissdelphicenter.ch/torry/showcode.php?id=1164
回答3:
TMS component suite has better notification tools.You can check those out
来源:https://stackoverflow.com/questions/10175930/whats-the-cartoon-speech-bubble-coming-from-the-notification-area-called-and-h