Click here to Skip to main content
15,881,882 members
Everything / General Programming / Usability

Usability

usability

Great Reads

by Greg Utas
Automating help, validating user input, running scripts...
by Levente Kupás
If you have big reports which run slowly, you may use this T-SQL based engine to speed-up them.
by Greg Utas
The well-tempered server
by Trenton Moss
Designing Visualisations: Applying User-centered Guidelines

Latest Articles

by Greg Utas
The well-tempered server
by Greg Utas
Automating help, validating user input, running scripts...
by madeas
A cross-browser collection of CSS box-shadow + Generator the file box-shadows.min.css + Box-shadow CSS Generator
by Olivia Glenn
Create meaningful version numbers that everyone - developers, testers, operations, managers, and even end-users - will find helpful

All Articles

Sort by Score

Usability 

9 Mar 2022 by Greg Utas
Automating help, validating user input, running scripts...
9 Jan 2012 by OriginalGriff
And why would you want that?I can't think of many legitimate reasons for wanting that particular combination of features...
9 Jan 2012 by richard_k
1. Keyloggers are definitely malicious. 2. Writing a program 'in the manner of a keylogger' is also by definition malicious. Why wouldn't you want your program to be discoverable/managable by the user? If you are looking to hide your program from users, you want to hide it for a reason.....
20 Jun 2013 by Levente Kupás
If you have big reports which run slowly, you may use this T-SQL based engine to speed-up them.
10 Jan 2012 by Richard MacCutchan
There is no C code that you can add to a program to use less CPU. It will use as much CPU as required by the execution of the instructions in the program. Maybe you need to explain in better detail exactly what problem you are trying to solve, just as long as it's not about hacking.
10 Jan 2012 by fjdiewornncalwe
The best way for you to make your application to use less CPU and resources is to use this really cool exit(); function. It works really well. You'll find that your application will sleep really well and use virtually no resources.
15 Mar 2022 by Greg Utas
The well-tempered server
27 Aug 2010 by Kunal Chowdhury «IN»
Hi cjb110,That's a very good question. I don't feel it as useful every time calling "this". You should use the keyword "this" only when it is require.Suppose, in the following case:public class Person{ private string fullName; public Person(string fullName) { ...
24 Jun 2011 by «_Superman_»
Mark Russinovich has written a lot of blog posts on pushing the limits.The latest one is here - http://blogs.technet.com/b/markrussinovich/archive/2010/03/31/3322423.aspx[^]You will find the links to others in that post.It should be a good read.
5 Feb 2010 by Nagy Vilmos
I'll be interested in any feedback on the following design problem.I've got a data feed that updates real time. The criteria for the data is provided by the user entering values through the UI.We have the option to update the criteria as and when the user enters something or to allow them...
27 Aug 2010 by Christian Graus
The only difference it makes, is that it gives you some intellisense, and explicitly scopes what would otherwise be implicit. The compiler will ignore it.
5 Feb 2010 by Abhishek Sur
You didnt mentioned where you want to do this. I think it is always better to update when the user accepts the whole page. In the mean while, you can create a temporary memory and store it(persistent if possible).The main database should be updated only when the user accepts the whole...
12 Aug 2010 by Trenton Moss
Designing Visualisations: Applying User-centered Guidelines
27 Aug 2010 by cjb110
When using the this keyword to reference methods/variables in the current class instance does it make any difference at all if I use it or not? (I mean where I could use it, not where I should or have to use it)I tend to declare my internal/privates with a leading '_', so I don't need this...
27 Aug 2010 by Gregory Gadow
The linker uses the narrowest scope when resolving names. The this keyword (and in VB, the Me keyword) tells the linker to use the class-level object, even if there is a local object with the same name. this is also used for declaring extension methods in C#, but that's pretty arcane and not...
19 Jun 2011 by Sergey Alexandrovich Kryukov
I would say, you should not "investigate the obstacles", you should solve the application problem. You cannot solve "scientific" or "fundamental" problem here, because… there are no such problems, do be serious. (However, if you really need to investigate the "obstacle" you should go...
9 Jan 2012 by Richard MacCutchan
If you want it to use less CPU then write fewer instructions. If you want to run it in stealth mode then that suggests you are or wish to be a hacker: we do not support such people on this site.
31 Jul 2012 by Milan Raval
This article explain how to use Windows "Perfmon" to monitor WCF service performance.
22 May 2015 by Dave Kreskowiak
Web pages inside of a bunch of browser windows is just too complicated for something like this. Plain old Panel controls or UserControls populated like forms would do the job quite easily.As far as what you mean by "customizable", only you know.If you're looking for theme support or...
29 Mar 2013 by Ming Landers
Article about designing of a logic reasoning system
1 Nov 2012 by Kailas Mane
Create a multiple clolumn combox/autocomplete/dropdownlist in ASP.NET MVC3.
24 Jun 2011 by Brian Bennett
My question is very broad and has to do with limits. It has to do with using big numbers, big lists, and usability under those conditions. It has to do with memory size and speed, OS-dependent resources, and algorithm design in order to perhaps overcome some of these limitations. How do you...
13 Jun 2018 by madeas
A cross-browser collection of CSS box-shadow + Generator the file box-shadows.min.css + Box-shadow CSS Generator
8 Aug 2013 by Paolo Parise
Fast data entry using association rules.
21 Oct 2015 by Olivia Glenn
Create meaningful version numbers that everyone - developers, testers, operations, managers, and even end-users - will find helpful
19 Jun 2011 by ashwinkumark10
Some hours back I posted this question on StackExchange site. I would like to share the question here.http://programmers.stackexchange.com/questions/85270/when-interfacing-with-a-3rd-party-api-what-can-make-things-challenging[^]I would like to get some reviews and developers opinions...
10 Jan 2012 by XristosMr
Hey guys,i was wondering how can i make my C program (which let's say is a Keylogger) use less CPU.I ask you especially for some C code that i insert to my source code and make my program even always use less CPU or just "Sleep" it for a while. Answer ASAP please.Thanks for your time.
22 May 2015 by FrostedSyntax
My project has a main form with a header and several navigation buttons below. Below those is an area for displaying the content associated with each nav button and the panels that contain the content span the whole bottom area. I have coded a good chunk of the first two panels but it then...