I'm using Windows 7's Shell Libraries to overwrite an existing library and add new paths to it, using the managed wrapper available through the Windows API Code Pack 1.1. Every now and then, I can't seem to reproduce this in any way, a COMException is thrown while adding the paths [...] read more
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 = JumpList.CreateJumpList() list.AddToRecent(file); list.Refresh(); where JumpList is from the WindowsAPICodePack There were [...] read more
Why does saving a file fail so often on UWP? I open and read the contents of a specified file when the application is initially launched (with the help of a BackgroundWorker). Then when the application is suspending I try to save new content to the same file, however this [...] read more