bubble

Problem with NotifyIcon.ShowBalloonTip - balloon not showing up

I'm having trouble with something that I thought would be easy... I can't get my NotifyIcon to show a balloon tip. The basic code is: public void ShowSystrayBubble(string msg, int ms) { sysTrayIcon.Visible = true; sysTrayIcon.ShowBalloonTip(20, "Title", "Text", ToolTipIcon.None); } Nothing happens when I execute this code. I rea...

c++ sort with structs

Hi, I am having a hard time with this problem which requires a sort of customer names, customer ids, and finally amount due. I have the whole program figured, but cannot figure out the last prototype needed to do the sorting. i have a struct called Customers, and i will provide the int main() part also. I just need any help to gt started...

jQuery slider bubble

Does anyone know how to get a bubble to appear above the jQuery slider control when the user is moving the slider pointer? Ideally I'd like to have both pointers in a range slider have their own independent bubble. The bubbles will dynamically show the currently selected value of the slider pointer being moved by the user. It's a tough o...

jQuery: Cascading popups

Hi, I have the following code to display a pop-up div: <a href="#" id="pop1" rel="div#tt1">Click to show popup</a> <div class="popupBlock" id="tt1">My popup content ...</div> The div is initially hidden and with a bit of jQuery code I'm turning it visible when pop1 anchor is clicked. This is the plgin I've made for this: (function($...

What is the bubbling concept?

I've heard of events and SO answers "bubbling up", but what has all that got to do with bubbles? ...

how to enable default after event.preventDefault()?

jquery toggle calls preventDefault() by default, so the defaults don't work. you can't click a checkbox, you cant click a link etc etc is it possible to restore the default handler? ...

Scaling/resizing the diameter of all bubbles on a bubble chart (in WPF or Silverlight)

I have a bubble chart in a WPF application with LOTS of points in a BubbleSeries. The automatically drawn sizes of the bubbles result in so much overlap of the plotted bubbles, that most of the bubble points are obscured. The drawn bubble size does not change if I alter the data reduce the SizeValues of all the plotted points (some sort ...

Slideshow plus pop-up Bubble conflict (jQuery)

Hello guys, I'm working with a Slideshow, and I'd like to give to the items in it a smooth pop-up bubble, to give some more info about them on mouseover. The thing is, when I use the nice system that I found here (inspired by a post in jQuery for Designers), combined with jCarousel Lite, it seems to be a conflict. I got both versions ...

bubble of selected item while searching in UISearchBar like in mail app

I would like to implement something close to what happen in mail app in iphone when you enter new address in "To:" field: when you start searching a list of matching addresses appear (this I know how to do) and when you select one then a bubble with the address appears and you can go on adding addresses (this I don't know hot to do). An...

Chat Bubble Cocoa

I have been trying to create a chat bubble for about a month now... (you know, like the one in iChat or Tweetie). At some point I found a thread that said that I could use Twitterfon's source... which I did. But I get stuck for a few reasons. Which ones? Apple didn't seem to implement all the methods needed for calculating the rect's siz...

Consume events in MFC's CStatic and pass them to the parent

Hello, I am building MFC application where there is CDialog with child control derived from CStatic on it. I want to receive mouse events for CStatic control so I set "Notify" for it to true. Now I am able to receive message events through message map directly in MyStatic: class CMyStatic : public CStatic { afx_msg void OnLButtonDow...

make bubble arround text in uitextview?

hi , everyone.. i am working on application which has the same user interface as Iphone Sms Application , i want to make a "To" text field to add multiple contacts from address book . problem is that , how can i make the blue bubble in text after selecting the contact from address book .. and also i want to make the msg text field wit...

ASP.Net User Control Event Bubbling (C#)

Many thanks in advance. I've done my due diligence and researched for 2 days, but can't seem to wrap my mind around what online tutorials describe. The situation: Lead Programmer ups and quits. Owner of firm knows I've done some (novice) VB.NET on the side and asks me to wire up functionality between 2 custom user controls on his intr...

How to bubble key events from a control up to a form?

I am aware of the KeyPreview property of a Windows Form, and this allows the Form to receive the key events before they get passed to the focused control. However, I want the Form to receive the event after it has been to the focused control. As a test I have placed a TextBox on a Form. Upon typing in the TextBox it should perform it's...

Having minor problems with homework involving C bubble sort

It does not work. #include<stdio.h> void bubble_sort(int m, int a[100000]); void main() { int a[100000], i, m; FILE * be; be=fopen("be.txt","r"); // IMPORTANT! i pressed enter after last number in be.txt!!! for (i=0; !(feof(be)); ++i) fscanf(be,"%i", a+i); m=i-1; bubble_sort(m ,a); fclose(be); } void bubble_sort(int m, in...

Flex ArrayCollection bubble item up or down by one position

I have an ArrayCollection where I want to be able to bubble items up or down by one position. What is the best way to do this? ...

Problem implementing sorting algorithm in C with an array of structs

Well here is my little problem, first my code: struct alumn { char name[100]; char lastname[100]; int par; int nota; }; typedef struct alumn alumn; int bubble(alumn **arr, int length) { int i,j; alumn *temp; for (i=0; i<=length-2; i++) { for (j=i+1; j<=length-1;j++) { if ((*arr)[i].nota > (*arr)[j...

iPhone MKMapView force callout bubble

Is it possible to force the call out bubble to be open all the time? I tried putting the following code in didAddAnnotionViews: for (id<MKAnnotation> currentAnnotation in mapView.annotations) { [mapView selectAnnotation:currentAnnotation animated:NO]; } Which works, however, when I single tap the MKMapView the bubble dis...

What's the best jQuery plugin to show up a popup bubble when the user hover some text?

Like the effect you get when you hover "Subscribe" in Youtube ...

How to nicely scale a background image of a TextView for Android

Hi stackies, I'm battleing with extending a TextView for my Android app. I'd like to create "bubbles" to display text messages in a conversation, similar to the native iPhone SMS conversations. Is there a way to implement the resizing of a background image without just stretching it? I'd like to have a single background image that kee...