I was seeing that when you do somethings at Windows 7 that haves a progress bar, things like downloading a file. You can see that in the programs bar, at the icon of the application, there is the progress of the file downloading, but it's possible to build applications that can do this?

Take a look at the Internet Explorer icon at my screenshot: Downloading...

Large version here.

link|improve this question

What language - .NET or C++? – Daniel A. White Nov 9 '09 at 18:18
Sorry, but C# is very good to me. :D – Nathan Campos Nov 9 '09 at 18:21
feedback

2 Answers

up vote 4 down vote accepted

Yes.

http://code.msdn.microsoft.com/WindowsAPICodePack

This has a lot of Windows Vista/7 features for .NET (C#/VB/etc.), including Task Bar Progress Bars.

link|improve this answer
feedback

Yes, you use the iTaskbarList3 interface, on which you call SetProgressState and SetProgressValue methods.

A more detailed overview on how to use the new Windows 7 taskbar functions is on the Windows team blog.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.