Reputation: 62
When an application icon is displayed on the windows start menu, if you hover the mouse cursor over the right arrow indicator shown, Windows displays all documents recently opened by the application.
How do I make my own application do this?
The functionality is the same as installed versions of Visual Studio and Adobe Reader.
Upvotes: 1
Views: 650
Reputation: 7944
You need to install the application, register a file type within Windows and add an "open" verb to the file type pointing at your application's executable file.
WiX is an installer framework that can do this. Have a look at this answer for how to add the "open" verb in WiX: Wix File Association with standard Windows File
Upvotes: 1