I'll just go ahead and probable ask the most noobish question, but how to include this in my project ? I dragged the TaskbarNotifier.cs file into my solution explorer but how to link this to my application ? I do have 'using CustomUIControls;' but i dont think thats the include for that file .. is it ?
Thanks in advance (im very new in at this language!)
Never mind, i already answered my own question. Works great, good stuff!!!
TaskbarNotifier, a skinnable MSN Messenger-like popup in C# and now in VB.NET too
was wondering if you've seen any articles or have any thoughts on
how to wire this software up so that you can pop the message on another
computer other than your own, basically propagate the message through
an existing network
I hava an application with multiple dll. in the deeper application layer there is a dll containing the NotifierTaskbar class(called deep.dll). a client dll (called client.dll) intercepts an event, prepare the taskbar class to show and call the show method. The problem is that the popup do not appear.
Any idea? There is something i ignore?
p.s. I tried to call the dll containing the taskbarclass from a console project but the problem persists.
Hi,i have a problem which is: "Resource 'skin3.bmp' cannot be found in class 'Form1.Front'", i already put the images on the local folder, even in the bin folder plus i changed the property build action to a "embedded resource". any ideas??? thkx lots
Tried using your code after converting it however VB.Net version doesn't use WorkAreaRectangle.
Any idea how to fix this for VB.Net? Here's the code used for VB.Net:
Case TaskbarStates.Appearing
If Height < Me.bmpBackground.Height Then
SetBounds(Left, Top - Me.iIncrementShow, Width, Height + Me.iIncrementShow)
Else
Me.tmrAnimation.Stop()
Height = Me.bmpBackground.Height
Me.tmrAnimation.Interval = Me.iVisibleEvents
Me.eWindowState = TaskbarStates.Visible
Me.tmrAnimation.Start()
End If
First, I would like to say thank you for this great control.
Unfortunately, I have a problem with you control on Windows Vista. Some users of my program report that they don't get a popup. They all have Windows Vista, but others with Vista have a working popup.
I cannot reproduce the problem, but have you any idea of what it could be and how to fix it?
Hello,
Thanks for the great stuff first of all,
I observed that edges of the bitmap based popups are little jagged, Is there a way to make them smooth ?
I find this class is very great. I viewed the c++ verison too, but i need to use it in a thread. I saw in the comments on the C++ version that the version xmessenger.zip but all the links are dead. Does anyone has it ?
If yes please send me the archive to tipiak07@yahoo.com. I post this comment here because i saw last message for the C++ version was 1 year ago... so i hope people in this thread already used the C++ version
I will try to provide a link to share it for people who will need the archive in future reads of the article.
Best regards.
Thanks for the article. I was just working on popping up the toaster winodow in a scheduled manner. I was able to use Timercallback function and initiated the toast pop up function. However, it didnt worked for me. Can you give me some ideas regarding the same.
This is a very nice example. However, I think you will want to do some significant cleanup here. You are using many disposable objects without properly managing them. As a rule of thumb, if you create a disposable object, you are responsible for cleaning it up.
Also might want to consider running fxcop on this as well. Fxcop will help you in learning the langauage and the best uses of it.