0
votes
3answers
35 views
GUI controls appearing and disappearing based on user inputs
I think it's considered a bad practice to have controls appearing and disappearing and the size of the window changing in a single GUI screen dynamically based on a user's input. …
2
votes
4answers
61 views
Where can I find the Microsoft .NET Framework Development Guide?
I'm positive that this guide existed, but my Google skills seem to be broken today. Could you show me the link to the MSDN pointing to that section?
1
vote
2answers
34 views
UI Convention: Shortcut key for application exit?
Is there a convention for the shortcut keys for application exit?
Some applications uses Alt+X some others use Ctrl+ X and Ctrl+Q.
Applications like FF and IE doesnot assign a sho …
2
votes
4answers
70 views
evaluating cost/benefits of using extension methods in C# => 3.0
Hi,
In what circumstances (usage scenarios) would you choose to write an extension rather than sub-classing an object ?
< full disclosure : I am not an MS employee; I do not k …
3
votes
2answers
193 views
Rules to Develop a Delphi Windows 7 App
Where can I find the best set of rules to follow for developing a Delphi application for Windows 7?
1
vote
2answers
64 views
Type/Namespace alias conventions in C#
Are there are any established naming or coding conventions for defining namespace or type aliases in C#?
For those who are unaware, the C# language has a feature where aliases can …
0
votes
4answers
75 views
Examples of developer guidelines to bring a new developer up to speed
Here are some good examples of coding guidelines:
What should coding guidelines do, and are there any good examples of guidelines?
What about more general guidelines? Like the …
11
votes
2answers
333 views
Where is the source for Niman’s 13 Minimally Sufficient Commandments?
I have a page (page 1), dated February 2, 1989 that my former boss presented to me, outlining Niman's 13 Minimally Sufficient Commandments for programming. (He recognized that the …
10
votes
6answers
281 views
Deployment and Maintainence guidelines and strategies for large scale web applications
I work on a small scale application (about 5000 users), but we do maintain some important user preference data. Whenever we release an upgrade we check if there are users online (w …
5
votes
6answers
227 views
General advice and guidelines on how to properly override object.GetHashCode()
According to MSDN, a hash function must have the following properties:
If two objects compare as equal, the GetHashCode method for each object must return the same value. H …
4
votes
5answers
238 views
C#: How should ToString() be implemented?
The problems are:
GUI libraries like to use ToString as a default representation for classes. There it needs to be localized.
ToString is used for logging. There it should provid …
3
votes
5answers
166 views
Is it acceptable to design a method with a parameter of type System.Enum?
Consider the following method,
public void Add(Enum key, object value);
Since Enum is a "special class", I didn't realize you could use the type in this way, but it compiles. N …
5
votes
10answers
367 views
Too many constants?
Is there such a thing as too many constants in a project? What are some general rules of thumb about where the use of constants starts to become inappropriate and should be refacto …
11
votes
8answers
350 views
SPWeb.Site, should you call Dispose() on it?
Updated 06/08/2009 15:52: Short answer NO. Original question:
I can't find any reference which gives guidance on SPWeb.Site regarding disposing. I've gone through some of the more …
2
votes
4answers
153 views
Five core principals / rules / habits for CS Students ?
No doubt there is a lot to read on Blogs and in books and on stackoverflow
But can we identify some guidelines for CS students to stick with while studying?
For me these are as fol …
