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.
please help i am getting this message Additional information: Resource 'skin.bmp' could not be found in class 'filecopy.frmBackup'. the resources(bmp files) are in the project
i have a problem "An error occurred creating the form. See Exception.InnerException for details. The error is: Resource 'skin.bmp' cannot be found in class 'task.Form1'" I tray save images in bin/debug (when in debug modE) and bin/release (when in release mode) but nothing
Generally, the notifier works as advertised and does not steal focus. However, if I set CloseClickable to true and add a CloseClicked event which calls Hide(), the next time I display a new notifier it does steal focus from whatever window is active (system-wide). If I let the focus-stealing popup disappear on its own then the next one to come up won't steal focus - it only happens on the next one, following one that is closed through the CloseClicked handler. This is driving me crazy, I can't figure out why it's doing this!