Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
2answers
4k views

Balloon tooltip with close button - C#

How do I create a ballon tool tip with a close button. I can show a tooltip: TaskbarIcon.ShowBalloonTip(10000); but I can't do the opposite: TaskbarIcon.CloseBalloonTip(); Or even a way to show ...
6
votes
0answers
707 views

Balloon hints on Delphi app tray icon keep popping up indefinitely

I have a Delphi 2006 app that can minimize to a tray icon, and displays various alert messages via a balloon hint over the tray icon. Under some circumstances - I don't know when - a previously ...
4
votes
4answers
6k views

Creating a Popup Balloon like Windows Messenger or AVG

How can I create a Popup balloon like you would see from Windows Messenger or AVG or Norton or whomever? I want it to show the information, and then slide away after a few seconds. Edit: It needs to ...
2
votes
1answer
147 views

Programmatically close Java Tray Balloon

I am using java.awt.SystemTray to create and manage the tray icon and balloon messages. Everything works fine. But I would like to know whether it is possible to close or fade the message after it ...
2
votes
1answer
334 views

Inflate balloon when item is selected

I have a map activity that has many pins of map, and when I click a pin, a custom balloon opens, showing some information about that pin. Also, I have a search bar, where if you type the name of a ...
2
votes
1answer
216 views

Is there an easy way to add a checkbox to a balloon tip?

Is there an easy way to add a checkbox (or any other custom control, for that matter) inside a balloon tip? I want to provide the user with an optional checkbox that reads "Never show this message ...
2
votes
3answers
396 views

Detecting Notification Balloons

Using WinXP. What I need to do (pref in VB or c#) is to detect when another (closed source) program displays a notification balloon in the tray - and grab the details. Any help would be appreciated. ...
2
votes
6answers
6k views

popup for full calendar in jquery

I need to show a popup (balloon popup as in google calendar) while creating an event in the jquery full calendar. Any best plugins for the popup which shows as balloon and also which handles the ...
2
votes
2answers
1k views

Balloon-widget for GWT

I'm searching for a balloon-like widget for a GWT application, e.g. like the balloons Google Maps shows when displaying search results on a map. When searching I only found Javascript widgets, but ...
1
vote
4answers
489 views

Creating balloon tooltip in C#

Can i know how can i make a popup bubble message in my application coded in C#. Like example, when i start my application, it'll popup saying "Welcome to UbuntuSE App". And yea, The popup is not the ...
1
vote
2answers
279 views

Delphi - How do I find the source of a recurring “ghost” tray balloon popup?

I have a D2006 app that notifies various events via a tray balloon hint. Every so often, but not very often - say 1 in 10 invocations of the app -, one of the hints decides it is going to popup ...
1
vote
2answers
602 views

Can I align the text in a C# balloon tip?

I wrote a little C# program that displays text in a balloon tip from time to time. When the text is in English, there's no problem : Everything is aligned to the left and is readable, but sometimes I ...
1
vote
1answer
191 views

Zend + Pop Up's balloons on Server Problem

Dear Friends from Stackoverflow, Please help me with a problem that i'm having when uploading my project to the server. I'm using pop up's balloons (http://mckay.cshl.edu/balloons.html) for a ...
1
vote
1answer
204 views

Tray Icon issue

i have a program which displays tray icon and popups and balloon when some event occurs. The problem arises when i change the image of the try icon no balloon popups when the event occurs what could i ...
1
vote
1answer
848 views

Accessing balloon tips from VBA

How do you access balloon tips in the task tray area using VBA? I'm looking to find some simple methods to display and possibly even interact with the user. I am using Windows XP and MS Access 2003. ...
0
votes
0answers
97 views

BalloonPopupExtender - the property 'DisplayOnClick = false' doesn't work

i'm using the BalloonPopupExtender: <asp:BalloonPopupExtender ID="PopupControlExtender2" BehaviorID="PopupCnt" runat="server" TargetControlID="myTextBox" ...
0
votes
1answer
316 views

Hide/Show ajax cloud BalloonPopupExtender

I'm using the BalloonPopupExtender on a text box in order to say : "Unknown input" because its the only one that allows me to have a panel in which i can insert whatever controls i want. i want from ...
0
votes
3answers
499 views

Problem with balloon tips

HI, I create balloon tips all over our application. My problem is that all of the balloon tips stay on the task-bar and needs to be hovered over for them to disappear. public static bool ...
0
votes
0answers
618 views

System Tray Balloon Notifications from Adobe Air? [closed]

Is it possible to make an Adobe Air app create a native windows balloon notification/tooltip? I know it is possible to make a window appear in the corner, but I would like to use native windows ...
0
votes
1answer
520 views

Windows Balloon-tooltips in Python

Following the example at http://article.gmane.org/gmane.comp.python.general/541418, I've succeeded in creating a callable class for balloon tooltips, but the greater complexities of that code elude me ...
0
votes
2answers
440 views

WPF custom BalloonTips problem with multithreading

I have read other related question but i cant really get them to relate to this so I thought it were best to ask, Im pretty new to WPF and so on so please bear with me. I am using this ...
0
votes
1answer
505 views

About WM_MOUSEHOVER, controls and Balloons

I have this code in the switch (msg) loop inside WindowProc on my GUI App. case WM_MOUSEMOVE: TRACKMOUSEEVENT tme; tme.cbSize = sizeof(TRACKMOUSEEVENT); tme.dwFlags = ...