Quantcast
Channel: Animate taskbar Icon?
Browsing latest articles
Browse All 14 View Live

Animate taskbar Icon?

Oops, I'm sorry I missed that...  Thanks for pointing out my mistake.  Everything is working, except that the icon doesn't animate when I click the button (But I added it to the form_load event and...

View Article



Animate taskbar Icon?

The code inside your timer event handler is wrong.  Change it to match my example.  

View Article

Animate taskbar Icon?

The timer's Tick event will never fire while your code is executing.  Call Application.DoEvents() once in while while you're in the loop.  Or, much better, execute your code with a BackgroundWorker.

View Article

Animate taskbar Icon?

Hi,  I'm sorry to keep bothering you, I just don't understand why this won't work... Code Snippetpublic partial class Form1 : Form    {        private Icon[] icons;        private int currentIcon;...

View Article

Animate taskbar Icon?

Paste your code.  

View Article


Image may be NSFW.
Clik here to view.

Animate taskbar Icon?

Thank you, I tried those changes, and the notifyIcon isn't changing between the two icons...  I don't understand where the problem could be...I will try to play around with it a bit.  If you have any...

View Article

Animate taskbar Icon?

Try it this way: Note changes in the way the values in the icon array are assigned and a change in the timer event: Code Snippet    publicpartialclassForm1 : Form    {        privateIcon[] icons;...

View Article

Animate taskbar Icon?

I named them Icon1 and Icon2.  I think I am going to use two other icons though: "ProgIconA" and "ProgIconB".  Either way, Shouldn't I be able to type in:  "WindowsApp1.Properties.Resources.ProgIconA"...

View Article


Animate taskbar Icon?

What did you name your icons when you added them as resources?

View Article


Animate taskbar Icon?

Thank you very much for your help, I'm kind of embarassed that I was that far off...  I tried the code sample and VS doesn't like the use of "WindowsApp1.Properties.Resources.Icon1.ico" I get this...

View Article

Animate taskbar Icon?

Your program structure is all wrong, you are trying to declare fields and methods inside a method.  That's not legal in C#.  Make it look something like this:  public partial class Form1 : Form {...

View Article

Animate taskbar Icon?

Hi,  Yeah, their both in the resources file and that is what they're called.  Here are the errors I am getting:For the use of "[0]" & "[1]"Error    1    Array size cannot be specified in a variable...

View Article

Animate taskbar Icon?

Did you store the icons in your resouce file?Is the reference to the resouce file correct for your application? i.e. WindowsApp1.Properties.Resouces. etc.

View Article


Animate taskbar Icon?

I would like to, on the click of a button animate the taskbar icon.  I have been reading up on doing this, and found some very interesting articles.  Unfortunately I can't get any of the code samples...

View Article
Browsing latest articles
Browse All 14 View Live




Latest Images