Tagged Questions

8
votes
1answer
2k views

How do you register a Most Recently Used list with Windows in preparation for Windows 7?

With the upcoming release of Windows 7, one of the newly touted features is the Jump Lists, with their automatic population of most recently used items. Supposedly, if you've been 'properly' ...
5
votes
4answers
452 views

Taking advantage of Windows 7 RC using C#?

I want to take advantage of the new features in Windows 7 using C# (ie. JumpList, Window Shake, etc). Are there any websites/tutorials that can show me what I want to learn.
3
votes
1answer
118 views

Jump Lists and Windows Forms

I've read a few other articles on Stack Overflow about implementing a Windows 7 jump list, but they're all from a couple of years ago and basically suggest, "get the Windows API Code Pack." (Answer ...
3
votes
2answers
561 views

Making a Windows 7 Jump-List in Java

I know the following things, and was wondering if they can be combined to make Java use jump-lists in Windows 7: Windows 7 displays Jump-Lists for supporting programs when a taskbar icon is ...
3
votes
2answers
488 views

How can I add my .sln file to my Jump List for Visual Studio (Windows 7)?

This very well my be a SuperUser.com question, however it's directly related to my programming environment so I thought I would ask here to see if another developer has solved this issue. I would ...
3
votes
2answers
801 views

How to use Windows 7 Jump Lists in a Java Desktop app?

As the title suggests, we have a Java (Swing) desktop application, and we'd like to be able to have some basic access to the Jump Lists (in the new Windows 7 taskbar). In particular, we'd like to be ...
3
votes
1answer
2k views

Windows 7 Jump-List (Windows Forms, C#)

Does anybody know how to customize the Windows Jump-List feature related to my own application in C#? I know it can be done, but I cannot find anything C#/Windows7 related on MSDN yet. The only info ...
3
votes
3answers
340 views

How to get a list of recently opened documents for an application?

I've found that it's easy to add a recently opened document with help of SHAddToRecentDocs Windows 7 Jump Lists somehow do it by knowing only program shortcut. Programs added to Windows 7 start menu ...
2
votes
1answer
184 views

Why do only files with my file extension show up in the Windows 7 jump list?

I am trying to properly integrate our app with the Windows 7 Jump Lists. We allow opening files within the application and I added this a while ago to add the items to the jump list: var list = ...
2
votes
2answers
368 views

how to create windows 7 jump lists via python/pyqt?

i have a pyqt project which i'm interested in using to play around with the new windows 7 jump list feature. after a bunch of searching, i have not found any specific examples of anyone creating ...
2
votes
1answer
577 views

.NET Windows 7 Jumplist - Checkbox / Radio Jumplist Item

I would like to create a jumplist item that functions with a tick or round checkmark in front of the option. I am using the Windows API Code Pack for the .NET implementation. I have had a look ...
1
vote
0answers
28 views

Working w/ JumpList in VSTO Word Application

Has anybody been doing this that can help me get started. In WPF I can work with it just fine in VSTO it looks like I can not use the Framework 4 Classes, but must use the WindowsAPICodePack. I have ...
1
vote
1answer
261 views

Copy Jump List Shortcuts to Disk

Is there a way to copy Window 7 Jump List Shortcuts or File Names to disk? Can Powershell be used? I want to do this because my Jump List keeps getting cleared out like mentioned in this posting: ...
1
vote
1answer
289 views

can I set the AppUserModelID of an arbitrary process launched through a jumplist?

I have a simple console application written in C++ that acts as a stub for launching another application through it's jumplist. Purpose is to add jumplist abilities to applications that do not support ...
1
vote
2answers
389 views

C#: Clean recently used files from jumplists

Is there a way to clean the some items form the Windows Jump-List using C#? (An applications Jump-List appears when you click right on the applications icon in the Windows 7 Taskbar.) I would like ...
1
vote
2answers
306 views

.Net 4 JumpTask disable “Remove from this list”

I am using jumplists in .NET 4, so far I got it working fine, but I cannot make a JumpTask read only so a user cannot remove the task from the jump list. I want to remove the Pin to List and Remove ...
1
vote
3answers
321 views

Windows 7 Jump List

I think that is what this is called: http://img163.imageshack.us/img163/9234/13016288.png I want to be able to add stuff like that to my program. Such as an open button and other buttons that would ...
1
vote
1answer
286 views

Problem showing thumbnail toolbar in .net 3.5 form

I am usign WindowsApiCodePack for windows 7 to make a thumbnail toolbar for my form. In the form shown event i am doing this: tbButton1 = new ThumbnailToolbarButton(new Icon("myOverlayIcn.ico"), ...
1
vote
2answers
257 views

How to use Windows 7 features in my simple .net application without any new API?

I want to use windows 7 features like icon overlay, and thumbnail tasks but my question is that can i do it without using any other API on just my plain .net 3.5. i recently enabled jumplists on an ...
1
vote
0answers
175 views

Windows 7 Jumplist Override Max Slots

I'm messing with the cool jumplist stuff in Windows 7. I was hoping to add a number of items to the custom categories but noticed that I'm capped off at 10 items. Is there a way to override the ...
1
vote
1answer
564 views

Custom titles for Windows 7 Jump List Recent items

Quickie question: I'm toying with some of the new taskbar APIs in Windows 7 and have gotten Recent Items on my Apps jumplist to show up, but I would like to display them under a different title than ...
1
vote
2answers
750 views

How to add Windows 7 Jump Lists to a application

I want to add custom jump list entries to my application in Windows 7. The menus I am referring to are the following. Pin a application to the taskbar. Now right click on the application. Some ...
0
votes
0answers
19 views

Removing items from Custom Category - Jumplist

How to dynamically remove items from custom category in Jumplist (without deleting the jumplist itself). Here is how i am creating jumplist and customcategory: // Creating jumplist list = ...
0
votes
0answers
36 views

What dermines uniqueness for Windows 7 Jump List Recent items?

If I add a recent item, via the JumpList.AddToRecentCategory static method, how can I ensure that the same item is "overwritten" and goes to the top of the list without creating a duplicate? ...
0
votes
0answers
67 views

Adding user tasks to jump list during installation

It's possible to add user tasks programmatically to the windows 7 jump list: http://blogs.microsoft.co.il/blogs/sasha/archive/2009/02/23/windows-7-taskbar-user-tasks.aspx However, it would be relly ...
0
votes
1answer
122 views

Splash screen is pinned to taskbar, main screen shows additional taskbar entry

In my application, when you pin the installed app to the Taskbar from the Start Menu, and then launch the application from the pinned icon, the splash screen shows as if it is running from the pinned ...
0
votes
1answer
671 views

Where is Win7's jump list system data stored?

As per Jumplist Extender, I'm trying to prevent other apps from refreshing their jump lists (it's assumed that the user WANTS to do this, seeing as this is a JL editor.) One idea is to look for file ...
0
votes
3answers
160 views

JumpList and ClickOnce - is this combination possible?

I have a WPF application which uses a JumpList (Recent only). Everything works perfectly until I deploy it using ClickOnce - the JumpList simply does not show (BTW, it does not show as well when ...