Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

systray bubbles?

Status
Not open for further replies.

medicenpringles

Programmer
Aug 7, 2005
39
US
ya know those little bubbles that pop up above your systray to give you messages? is is possible to put other controls in those, such as checkboxes, radio buttons, and textboxes? if so (or not), how to i create one?

Main Language: Visual Basic .NET
Development Environment: Visual Studio .NET 2003
 
Are you talking about a tool tip? Or those things that come up and say something like "you have 1 new email message?" The former is a defualt .Net control. The latter would would be easy to create from scratch.
 
i'm speaking of the one's that pop up when you have a windows update to install, or a new device is plugged in. the yellow speaking bubble above the systray that pops up then w/ text in it.

Main Language: Visual Basic .NET
Development Environment: Visual Studio .NET 2003
 
I think I misread your question. Do you want to put controls in a systray bubble? Or do you want to you the systray type bubbles on normal windows forms controls?
 
well first of all i want to know how to show a normal one. then if i can put controls in it, even better.

Main Language: Visual Basic .NET
Development Environment: Visual Studio .NET 2003
 
OK. I don't think those things are attached to their specific systray item, correct? They just hover above the task bar. What you could do is design a small form with the look you want and controls you want on it...Then you can write code to show it in the correct position:

Code:
Dim ft As New frmTip
        ft.Show()
        ft.Top = Screen.PrimaryScreen.WorkingArea.Height - ft.Height
        ft.Left = Screen.PrimaryScreen.WorkingArea.Width - ft.Width
        ft.ShowInTaskbar = False
 
I'm all for systray icons. But, they are in a box, they should stay in the damn box. Same with that "where are my programs?" pop-up in the start bar. If you want my attention, flash in the tray, I'll click on you and let you out of the box.

Anyways, if you want, create a borderless form and open it at the positon that puts it above your sysicon.

-Rick

VB.Net Forum forum796 forum855 ASP.NET Forum
[monkey]I believe in killer coding ninja monkeys.[monkey]
 
so there's not an actual .net component for this?

Main Language: Visual Basic .NET
Development Environment: Visual Studio .NET 2003
 
oh, and is there a way to modify the look of the blue bar that hold the control box? (the minimize, maximize, and close buttons)

Main Language: Visual Basic .NET
Development Environment: Visual Studio .NET 2003
 
i'm sorry if this is getting annoying. i'm a begginer. so i get real excited about this stuff.

Main Language: Visual Basic .NET
Development Environment: Visual Studio .NET 2003
 
there are several you can download from codeproject and the like.

Christiaan Baes
Belgium

I just like this --> [Wiggle] [Wiggle]
 
I would just take the title bar off. .FormBorderStyle = None I believe.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top