Skip to main content

Usability: Learning New Environments

I realized how quiet I've been here and while I have a number of posts waiting in draft, I've been so busy it's been impossible to complete them. But I did want to post this after I dealt with it yesterday.

I've been on an ASP.Net contract now for about 3 months which is an experience all unto itself - non MVC, non standard ASP.Net app using the DevExpress components. Since this is someone else's application "framework" and I'm simply a hired hand to help finish it off, I find I'm using parts of Visual Studio that I've never really thought of and/or used that often.

I'm not referring to actual development pieces like Datasets or class designers but the more basic elements of any IDE. It drives me nuts when things don't use the same short-cut keys that I'm used to, and while we can always change them to suit our moods, that's not the way I usually like to go. We live in a Windows world and so are used to certain things: F1= Help, Ctrl+C Copy, Ctrl+V = Paste (?!?!), Ctrl+F = Find, etc.

In Visual Studio, I've had several "where is that command" moments and come back going "why did they put that there?" I'm sure there's a good reason that the option to comment code is hidden 2 levels in the Edit menu (under Advanced) but I can't think of one, especially when an option like Create Guid is right on the Tools menu.

Does anyone create Guids more often than block comment?

My "duh" moment yesterday came when I was looking to find all references to a particular variable so I could figure out where a particular value was being set. I hit Ctrl+F and go to the QuickFind.

quickfind

Rather than cycle through it all, there must be an easier way - (something like Code references in VFP) - I choose Find Options - nothing there. I must be getting lazy because I immediately twittered it right before I found it under Find In Files.

Is that option really hidden away? Not quite, you can access it from the QuickFind drop-menu or by hitting Ctrl+Shift+F but it wasn't in my face right there.

But maybe more to the point, applications always seem to find ways of putting in more options and hiding them under menu options. Does Find and Replace really need its own sub-menu when you could likely put all of the choices in one dialog?

I'm all for keeping the basic menus shorter but the menu design choices that were made in Visual Studio just don't seem to make sense. I didn't feel too bad when some of the tweets I got back were about how buried some of the options were, which is what inspired the post. (don't even get me started on SQL Server 2005's menus or usability - I'm so happy I've switched to 2008 which is much better, although still not perfect)

When you design an application, to whom do you talk to ensure the experience is the best one possible for your users? If features that resolve the problem are priority #1, then shouldn't usability to find those features be priority #2?

So on that end, all of this to say, I built a little poll about what you do in development environments ASIDE from coding and designing.



What do you do in development environments?



I could be completely wrong on this - and have no doubt, many VS developers are shaking their heads going "what an idiot" - but no doubt, that was after they went through many of the same "where is this..." moments.

This isn't just a developer issue either - so it's useful to take the question "how do people discover this feature" and apply it to your own application design as well.

Comments

Popular posts from this blog

Elevating Project Specifications with Three Insightful ChatGPT Prompts

For developers and testers, ChatGPT, the freely accessible tool from OpenAI, is game-changing. If you want to learn a new programming language, ask for samples or have it convert your existing code. This can be done in Visual Studio Code (using GitHub CoPilot) or directly in the ChatGPT app or web site.  If you’re a tester, ChatGPT can write a test spec or actual test code (if you use Jest or Cypress) based on existing code, copied and pasted into the input area. But ChatGPT can be of huge value for analysts (whether system or business) who need to validate their needs. There’s often a disconnect between developers and analysts. Analysts complain that developers don’t build what they asked for or ask too many questions. Developers complain that analysts haven’t thought of obvious things. In these situations, ChatGPT can be a great intermediary. At its worst, it forces you to think about and then discount obvious issues. At best, it clarifies the needs into documented requirements. ...

Blogs and RSS come to Microsoft.com

MS has just introduced their portal and it's pretty comprehensive. Nothing quite like learning that some people use AIM instead of MSN messenger, or that there really may be a need for supporting 4 monitors ( Cyrus Complains ) However, it's really a great sign that MS is serious about supporting the blogging community which seems to have um, exploded in size in the past year. Blogs and RSS come to Microsoft.com

I’m Supposed to Know

https://programmingzen.com/im-supposed-to-know/ Great post for developers who are struggling with unrealistic expectations of what they should know and what they shouldn't. Thirty-forty years ago, it was possible to know a lot about a certain environment - that environment was MS-DOS (for non Mac/UNIX systems). . There was pretty much only a handful of ways to get things going. Enter networking. That added a new wrinkle to how systems worked. Networks back then were finicky. One of my first jobs was working on a 3COM + LAN and it then migrated to LAN Manager. Enter Windows or the graphical user interface. The best depiction of the complexity Windows (OS/2, Windows NT, etc) introduced that I recall was by Charles Petzold (if memory serves) at a local user group meeting. He invited a bunch of people on the stage and then acted as the Windows "Colonel", a nice play on kernel. Each person had a role but to complete their job they always had to pass things back to h...