How to code this simple code?

I'm not a programmer, I wanna learn how to group w/e running programs I want in win7 taskbar.


Anyone know how to do this,




http://theburningmonk.com/2010/07/windows-7-taskbar-application-id/# , as below code

or

http://blog.zwezdin.com/en/19




, pls mention every tool I need to download ( If it matters, I've d/l the Windows API Code pack from here https://github.com/jamie-pate/KeepSync/blob/master/contrib/Windows%20API%20Code%20Pack%201.1.zip .) ?



1
2
3
4
5
6
7
// Check whether the taskbar feature is supported (Win 7 or Win Server 2008 R2)
if (TaskbarManager.IsPlatformSupported)
{
    // Set the AppID for the current process TaskbarManager.Instance represents an 
    // instance of the Windows Taskbar
    TaskbarManager.Instance.ApplicationId = "NewApplicationID";
}
Last edited on
Topic archived. No new replies allowed.