One simple feature missing from many programs – Where is my file?

I only just realized this – I was working with KeePass to set up a synced copy of my password file to a SkyDrive folder. Of course I wanted to make a backup copy first, which I did with a “Save As Copy” command. Now the fun question – I have a file open in KeePass – which one is it?

Most of the time, you can figure this out by opening the Save As command and seeing where the file dialog opens. But in this case, since I’d used the “Save As Copy” command I wasn’t feeling deeply confident that would work. The file name is in the title bar, but not the path. Finally I realized the only true way to be sure which file I had open was to explicitly open the file I wanted open. Not really optimal…

So the question you have to ask yourself, if you’re writing a document-centric application – how easy is it for a user to check the path of the file they currently have open? Ways to make this available:

  • Put the path in the status bar, especially if you don’t have anything there now.
  • Mouseover popup when the user mouses over the filename in the title bar. (But you shouldn’t put the full path in the title bar, since the taskbar and other applications show the title bar to show what’s running, and a list that has nothing but “c:\user\Norm\My Documents\proje…”  isn’t helpful)
  • My favorite: under the File menu, have “Information” to open a small dialog that shows the properties of the currently open file – file size, last saved, and of course, the full path.

What Makes a Good Technical Article

image.png

So we have a particular error in SharePoint and two articles online about how to resolve it. These two articles are exceptional examples of good and bad ways to write a technical article. What makes the “bad way” such a great example is that it’s bad in the very subtle way that technical articles can [...]

Continue reading...

Best Selling Business Intelligence Books – March 2012

Best Selling Business Intelligence Books

This is a list of the books from the Computer section tagged with “Business Intelligence.” I’ve selected the top ten listed by recent popularity. The most interesting thing is that the SQL Server Reporting Services book is for 2005.

Continue reading...

Gartner Predicts the end of the PC by 2014, and this time we mean it.

  On Wired Cloudline, Mike Barton covered Gartner’s prediction that the “Personal Cloud” will replace the PC by 2014. I think we should call it the “Networked Personal Cloud” or “NetPC.” which has been predicted to replace the home computer since 1996. Gartner lists “five megatrends” that point to a mass migration to the cloud, [...]

Continue reading...

SharePoint 2010: Rename Content Databases and the Configuration Database

image_thumb3_thumb.png

To rename a content database, we’re going to remove the database in SharePoint, then detach the database in SQL Server, and reattach it with the new name. Finally, we’ll reattach the database…

Continue reading...