Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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.
4
votes
1answer
93 views

Vim: how to prevent jumps out of current buffer?

I frequently have several buffers open in my Vim session. This means that my jumplist stores locations from several buffers. However, frequently when I use Ctrl-o to jump to a previous location, I do ...
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
3answers
94 views

What is the fastest (insert speed) way to achieve a prioritized collection of arrays in .Net?

I am writing a specific priority queue. Its structure needs to be something as follows: Priority(<int>) Data(List<Object>) 1 a, b, g, h 3 c, d, j 4 ...
3
votes
2answers
452 views

System.Windows.Shell Reference missing

I have a windows form application and i want to make my own custom jumplist. To do this i need to use the namespace System.Windows.Shell but i can't access it, and i can't find a reference for it in ...
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
1answer
85 views

Jumping to content location of a different page with ASP.NET

Does anyone know how to jump to the content location from a href link on another page in ASP? I understand the anchor concept shown below, but this only works with html not ASP. <a ...
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
314 views

Disable jumplist entries in Windows 7 for VBA-generated Office documents

I am programmatically generating Office Documents (in my case Word or Excel 2007) using automation in VBA (in this example MS Access 2007, but that should not change much) under Windows 7. This works ...
1
vote
1answer
61 views

Can i open directory from jump list

Im writing WPF application and want to add ability to call jump list and open program configuration, app.config or log directory from it. Is it possible(cant find the way to do that..just JumpTasks ...
1
vote
1answer
90 views

Unable to dynamically add jump list tasks to IE9 / Win7 menu

I am able to add "tasks" to a pinned site in IE9 using meta tags eg. <meta name="msapplication-task" ...
1
vote
1answer
262 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
259 views

Need help using System.Windows.Shell.JumpList.SetJumpList();

I'm really new to this so this is probably a very simple thing to answer but anyhow... I need to use the method in the title to set a new jumplist for my windows form app, but i don't know what ...
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
2answers
83 views

Cannot jump to newer position in jump list

For some reason, I cannot jump forward with <C-I>; gives me the error beep. <C-O> works just fine. I don't see any remapping going on either. Any ideas what might be the problem? I'm ...
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
13 views

Is there anyway to add an input field for IE9 jump lists?

I've been playing with IE9's new jump lists. I was wondering if there is a way to add an input field to the jump list. I want to add a search bar to the jump list and takes it to the site and put the ...
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
1answer
23 views

WPF4 JumpList Missing when launched from Program Files

I have a very simple application that I'm adding jumplist support to. A few days ago I was happy and I called it version 1. So I copied it to c:\program files\clipboard editor\clipboardeditor.exe ...
0
votes
0answers
23 views

How can I remove the application launch icon from the Windows 7 jumplist [closed]

I have an application that is not allowed to start twice - so it would be fine to remove the application launch icon from the applications' default jumplist. All the user should do is to close the ...
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 ...