User Kramii - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T17:11:58Z http://stackoverflow.com/feeds/user/11514 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1095290/it-evaluating-quality-of-coding-how-do-we-know-whats-good/1098328#1098328 3 Answer by Kramii for IT evaluating quality of coding - how do we know what's good? Kramii 2009-07-08T14:09:48Z 2009-07-08T14:09:48Z <p>Code has 2 primary audiences:</p> <ul> <li>The people who use it</li> <li>The people who develop it</li> </ul> <p>So you neeed 2 simple tests:</p> <ul> <li>Run the code. Can you get it to do the job it is supposed to do?</li> <li>Read the code. Can you understand the general intentions of the developer?</li> </ul> <p>If you can answer yes to both of these, it is great code.</p> <p>When reading the code, don't worry that you are not a programmer. If code is well written / documented, even a non-programmer should be able to see guess much of what it is intended to achieve.</p> <p>BTW: Great question! I wish more non-programmers cared about code quality.</p> http://stackoverflow.com/questions/965621/hiding-master-page-preview-in-design-view/1098123#1098123 0 Answer by Kramii for Hiding master page preview in design view? Kramii 2009-07-08T13:36:17Z 2009-07-08T13:36:17Z <p>You could move the controls from the page into a user control and preview that.</p> http://stackoverflow.com/questions/965621/hiding-master-page-preview-in-design-view/1078711#1078711 0 Answer by Kramii for Hiding master page preview in design view? Kramii 2009-07-03T10:06:52Z 2009-07-03T10:06:52Z <p>No, there isn't. Why would you want to do that?</p> http://stackoverflow.com/questions/796874/what-resources-do-you-use-to-help-you-decide-upon-useful-names-for-your-classes-a/796895#796895 0 Answer by Kramii for What resources do you use to help you decide upon useful names for your classes and methods? Kramii 2009-04-28T08:59:35Z 2009-04-28T08:59:35Z <p>What is the class responsible for? Name it that.</p> http://stackoverflow.com/questions/781828/how-to-deal-with-requests-for-ridiculous-functionality-in-your-software/782287#782287 1 Answer by Kramii for How to deal with requests for ridiculous functionality in your software? Kramii 2009-04-23T15:33:00Z 2009-04-23T15:33:00Z <ul> <li><p>Sometimes you can explain why the functionality is ridiculous, and the functionality is dropped.</p></li> <li><p>Sometimes you can get someone more senior to say "no" for you.</p></li> <li><p>Sometimes you are senior (or influential) enough to say "no" for yourself.</p></li> <li><p>Sometime you can say "yes", but give the task a low priority (and never do it).</p></li> <li><p>Sometimes you just have to get on with it.</p></li> </ul> <p>In the latter case, you should make sure to do the task very, very well indeed. Why? You will shine, and as you do so, the shadow of the ridiculous will be brought into focus.</p> http://stackoverflow.com/questions/782193/how-do-you-cope-with-coders-coma/782215#782215 6 Answer by Kramii for How do you cope with coders coma? Kramii 2009-04-23T15:19:23Z 2009-04-23T15:19:23Z <p>If the task is tedious because it is repetative, I write a program to do the task for me. ;-)</p> http://stackoverflow.com/questions/685159/which-language-would-you-like-to-magic-your-vb6-app-to/685223#685223 2 Answer by Kramii for Which language would you like to magic your vb6 app to? Kramii 2009-03-26T10:35:32Z 2009-03-26T10:35:32Z <p>I was going to say Swahili ;-)</p> <p>I can only anwer in retrospect, because the port has already happened.</p> <p>We chose VB.Net because:</p> <ul> <li>Our code-base was Windows-specific, so there was no need for Java.</li> <li>We wanted a high-level business-oriented programming environment, so no C++ for us.</li> <li>We were looking for a big-name vendor with a large user base, so niche languages were not considered.</li> <li>Delphi was already dead :-(.</li> <li>We wanted to leverage our existing VB skills, so chose against C#.</li> <li>We had hoped to use the Wizard (but decided not to as it did such a poor job).</li> </ul> <p>For the most part, I am happy with this choice. However, Java <em>might</em> have offered us added value - on the CV for example. It isn't easy to be expert in any <em>one</em> mature programming language, so I have become a VB.Net programmer through-and-through.</p> http://stackoverflow.com/questions/259026/why-doesnt-c-allow-static-methods-to-implement-an-interface 16 Why Doesn't C# Allow Static Methods to Implement an Interface? Kramii 2008-11-03T15:42:00Z 2009-02-26T07:16:06Z <p>Why was C# designed this way?</p> <p>As I understand it, an interface only describes behaviour, and serves the purpose of describing a contractual obligation for classes implementing the interface that certain behaviour is implemented.</p> <p>If classes wish to implement that behavour in a shared method, why shouldn't they?</p> <p>Here is an example of what I have in mind:</p> <pre><code>// These items will be displayed in a list on the screen. public interface IListItem { string ScreenName(); ... } public class Animal: IListItem { // All animals will be called "Animal". public static string ScreenName() { return "Animal"; } .... } public class Person: IListItem { private string name; // All persons will be called by their individual names. public string ScreenName() { return name; } .... } </code></pre> <p>[Edited to include an example]</p> http://stackoverflow.com/questions/485007/applying-existing-tablestyle-to-a-gridview/502746#502746 0 Answer by Kramii for Applying Existing Tablestyle to a Gridview Kramii 2009-02-02T10:14:05Z 2009-02-02T10:14:05Z <p>I don't think there is an easy way to port styled from datagrids to gridviews.</p> <p>You might consider using the <a href="http://www.codeplex.com/cssfriendly" rel="nofollow">CSS Friendly Control Adaptors</a> as a mechanism for applying the styles:</p> http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/290363#290363 0 Answer by Kramii for What is the single most influential book every programmer should read? Kramii 2008-11-14T15:12:41Z 2008-11-14T15:12:41Z <p><a href="http://allwrong.wordpress.com/2008/11/14/mini-book-review-graphics-programming-in-windows-charles-petzold/" rel="nofollow">Graphics Programming in Windows</a> is difficult to fault.</p> http://stackoverflow.com/questions/290239/programming-as-a-meaningful-profession/290315#290315 2 Answer by Kramii for Programming as a meaningful profession? Kramii 2008-11-14T14:57:16Z 2008-11-14T15:03:07Z <p>It depends:</p> <ul> <li><p>Do the fruits of your labour benefit your direct customers? Do you reduce the drugery in their lives, or save them money / time / stress?</p></li> <li><p>Does your customer's business benefit the world? If you work for a charity that offers humanitarian aid, you should feel bad about yourself. Presumably not so much if you work for the MAFIA.</p></li> <li><p>Does your remuneration enable you to meet your personal responsibilities? For example, does it feed, clothe and shelter your family?</p></li> </ul> <p>If you can't say 'yes' to all the above, I suggest you start looking for another job!</p> <p>[An old entry on my <a href="http://allwrong.wordpress.com/2007/06/05/how-i-see-myself-professionally/" rel="nofollow">blog</a> expresses some of these sentiments in a little more depth].</p> <p>BTW: Don't knock writing queries: not everyone can do it, including most doctors.</p> http://stackoverflow.com/questions/287022/closing-the-browser-should-actually-clear-the-session-variables-an-asp-net-sessio/287235#287235 1 Answer by Kramii for Closing the browser should actually clear the session variables an ASP.net session id. Kramii 2008-11-13T15:25:50Z 2008-11-13T15:25:50Z <p>Sorry, but I think you might be trying to solve the wrong problem here.</p> <p>Why do you need to clear session state immediately?</p> http://stackoverflow.com/questions/281172/could-you-use-stackoverflow-as-a-reference-in-a-professional-paper-presentation/281492#281492 1 Answer by Kramii for Could you use Stackoverflow as a reference in a professional paper/presentation? Kramii 2008-11-11T17:03:51Z 2008-11-11T17:03:51Z <p>There is one set of circumstances where I believe SO should be cited:</p> <p>If your primary source of information is SO, and that information is unavailable elsewhere, and you can verify that information is correct (by testing), then I think it would be very bad manners not to cite SO.</p> <p>This is particularly important if the information sourced on SO is central to your thesis.</p> <p>Examples might be:</p> <p>A discussion about an undocumented API reference that someone has discovered, and that you can verify by checking a compiled binary.</p> <p>A programming technique that is unpublished elsewhere, but that can be demonstrated in practice.</p> http://stackoverflow.com/questions/278430/what-are-the-best-ways-to-understand-an-unfamiliar-database/278472#278472 4 Answer by Kramii for What are the best ways to understand an unfamiliar database? Kramii 2008-11-10T16:58:59Z 2008-11-10T16:58:59Z <p>In addition to Bill Karwin's ideas, I suggest talking to the users - occasionally users know quite a bit about what their database is used for, especially if they do any reporting from it.</p> http://stackoverflow.com/questions/265343/automatically-duplicating-business-logic-on-web-client/268397#268397 0 Answer by Kramii for Automatically Duplicating Business Logic on Web Client Kramii 2008-11-06T11:48:20Z 2008-11-06T11:48:20Z <p>I think a simple rule engine is your best option. Depending on the validation you want to perform it needn't be too complex.</p> <p>Anything else will involve additional round trips to the server (to perform all validation in C#) or getting the server to execute the JavaScript (which is much harder, I believe, than implementing a rules engine).</p> <p>The only alternative is duplicating the code (just as Microsoft does).</p> http://stackoverflow.com/questions/268258/how-do-you-make-code-reusable/268358#268358 1 Answer by Kramii for How do you make code reusable? Kramii 2008-11-06T11:30:50Z 2008-11-06T11:37:14Z <p>More than anything else, maintainability makes code reusable.</p> <p>Reusability is rarely a worthwhile goal in itself. Rather, it is a by-product of writing code that is well structured, easily maintainable and useful.</p> <p>If you set out to make reusable code, you often find yourself trying to take into account requirements for behaviour that might be required in future projects. No matter how good you become at this, you'll find that you get these future-proofing requirements wrong.</p> <p>On the other hand, if you start with the bare requirements of the current project, you will find that your code can be clean and tight and elegant. When you're working on another project that needs similar functionality, you will naturally adapt your original code.</p> <p>I suggest looking at the best-practices for your chosen programming language / paradigm (eg. Patterns for Java / C# types), the Lean / Agile programming literature, and (of course) the book "Code Complete". Understanding the advantages and disadvantages of these approaches will improve your coding practice no end. All your code will then become reausable - but 'by accident', rather than by design.</p> <p>Also, see here: <a href="http://stackoverflow.com/questions/162805/writing-maintainable-code">Writing Maintainable Code</a></p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/262225#262225 1 Answer by Kramii for What real life bad habits has programming given you? Kramii 2008-11-04T16:00:22Z 2008-11-04T16:00:22Z <p>Apparently, I use language differently from other people. I once gave a talk on programming, and it took me all afternoon to figure out why people were sniggering every time I mentioned the use of some public property as a means to expose a class' private members.</p> http://stackoverflow.com/questions/213625/best-way-to-make-it-so-an-exe-can-only-be-run-once/243722#243722 1 Answer by Kramii for Best way to make it so an exe can only be run once. Kramii 2008-10-28T15:23:36Z 2008-10-28T15:23:36Z <p>Have the installer create a registry entry. Refuse to install (again) if the registry entry already exists.</p> <p>Exactly how to achieve this will depend on the installer technology that you are using.</p> http://stackoverflow.com/questions/242813/when-to-use-double-or-single-quotes-in-javascript/243687#243687 5 Answer by Kramii for When to Use Double or Single Quotes in JavaScript Kramii 2008-10-28T15:15:07Z 2008-10-28T15:15:07Z <p>Strictly speaking, there is no difference in meaning; so the choice comes down to convenience.</p> <p>Here are several factors that could influence your choise:</p> <ul> <li>House style: Some groups of developers already use one convention or the other.</li> <li>Client-side requirements: Will you be using quotes within the strings? (See Ady's answer).</li> <li>Server-side language: VB.Net people might choose to use single quotes for java-script so that the scripts can be built server-side (VB.Net uses double-quotes for strings, so the java-script strings are easy to distinguished if they use single quotes).</li> <li>Library code: If you're using a library that uses a particular style, you might consider using the same style yourself.</li> <li>Personal preference: You might thing one or other style looks better.</li> </ul> http://stackoverflow.com/questions/130986/an-affordable-tool-for-db-modeling/242690#242690 -1 Answer by Kramii for An affordable tool for DB modeling Kramii 2008-10-28T09:47:44Z 2008-10-28T09:47:44Z <p>Pen and paper are very versatile, and very cheap.</p> http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/240282#240282 28 Answer by Kramii for Worst UI You've Ever Used Kramii 2008-10-27T15:22:16Z 2008-10-27T15:22:16Z <p>I once provided front-line support for an application that presented the user with a menu of options. It looked something like this:</p> <p>[1] Do something</p> <p>[2] Do something else</p> <p>[3] Do another thing</p> <p>[X] Exit</p> <p>At this menu, my users were required to press "8".</p> http://stackoverflow.com/questions/236936/how-pick-colors-for-a-pie-chart/236985#236985 2 Answer by Kramii for How pick colors for a pie-chart? Kramii 2008-10-25T20:42:36Z 2008-10-25T20:42:36Z <p>There is a generator <a href="http://www.wellstyled.com/tools/colorscheme2/index-en.html" rel="nofollow">here</a>. It is intended for web design, but the colours would look great on a pie chart, too.</p> <p>You could either pre-compile a list of nice colours, or examine the logic behind the generator and do something similar yourself.</p> http://stackoverflow.com/questions/233818/motivation-how-do-you-change-it-from-fear-to-fun/234083#234083 0 Answer by Kramii for Motivation - How do you change it from fear to fun? Kramii 2008-10-24T15:45:55Z 2008-10-24T15:45:55Z <p>I suggest you:</p> <ul> <li>Consider carefully specific situations have given you a real buzz in the past. What did you do? What was your role? What was the social contect of the situation? What aspect of the pocess / outcome made you come alive? etc.</li> <li>Look at ways to transform what you're doing into more of the above.</li> <li>Get help to do these things if you need it.</li> </ul> <p>You don't have to 'risk it all', but you may have to 'risk it some'. In any case, from what you've said, even 'all' may not be a lot to risk, if you're unhappy anyway. Of course you have responsibilities, and these need to be met, but in the long run your family might benefit more by your contentment than by a large pay packet.</p> <p>I wish you all the best.</p> http://stackoverflow.com/questions/233903/how-can-i-convince-my-boss-to-buy-books-for-programmers/233930#233930 21 Answer by Kramii for How can I convince my boss to buy books for programmers? Kramii 2008-10-24T15:03:50Z 2008-10-24T15:03:50Z <p>If a book is worth reading, I want my own copy, so I buy it for myself. I long ago learned that I'm responsible for my own professional development.</p> http://stackoverflow.com/questions/164621/using-crystal-reports-in-visual-studio-2005-c-net-windows-app/233111#233111 0 Answer by Kramii for Using Crystal Reports in Visual Studio 2005 (C# .NET Windows App) Kramii 2008-10-24T11:12:15Z 2008-10-24T11:12:15Z <p>I strongly recommend trying an alternative reporting solution - I have a lot of experience with Crystal, and have managed to do some funky things with it in .Net, but quite honestly the integration of Crystal and .Net is an absolute pig for anything but the simplest cases.</p> http://stackoverflow.com/questions/19963/whats-the-best-way-of-diffing-crystal-reports/233098#233098 2 Answer by Kramii for What's the best way of diffing Crystal Reports? Kramii 2008-10-24T11:08:16Z 2008-10-24T11:08:16Z <p>One technique I have used to great effect in the past is to print out reports from both versions based on the same data. I then take the first page from each version, lay one on top of the other (it is important not to mix them up) and hold them up to a window. It is generally quite easy to see any differences, and these differences can be manually annotated with a suitable writing instrument such as a pencil. Repeat for each page in the report.</p> <p>Admittedly, for large reports this can be quite time consuming and error prone, but these limitataions can be overcome with patience and care.</p> http://stackoverflow.com/questions/219817/curious-pop-up-behavior-when-using-webbrowser-class/221657#221657 1 Answer by Kramii for Curious pop-up behavior when using WebBrowser class Kramii 2008-10-21T12:25:29Z 2008-10-21T12:25:29Z <p>IIRC you can trap the NewWindow2 event on the WebBrowser control and set Cancel = true to prevent the pop-up.</p> <p>This article may help:</p> <p><a href="http://www.codeproject.com/KB/cpp/ExtendedWebBrowser.aspx#GoalBlock" rel="nofollow">http://www.codeproject.com/KB/cpp/ExtendedWebBrowser.aspx#GoalBlock</a></p> http://stackoverflow.com/questions/200163/am-i-running-as-a-service/218954#218954 3 Answer by Kramii for Am I Running as a Service Kramii 2008-10-20T16:01:19Z 2008-10-20T16:01:19Z <p>Like Ash, I write all actual processing code in a separate class library assembly, which was then referenced by the windows service executable, as well as a console app.</p> <p>However, there are occasions when it is useful to know if the class library is running in the context of the service executable or the console app. The way I do this is to reflect on the base class of the hosting app. (Sorry for the VB, but I imagine that the following could be c#-ified fairly easily):</p> <pre><code>Public Class ExecutionContext ''' &lt;summary&gt; ''' Gets a value indicating whether the application is a windows service. ''' &lt;/summary&gt; ''' &lt;value&gt; ''' &lt;c&gt;true&lt;/c&gt; if this instance is service; otherwise, &lt;c&gt;false&lt;/c&gt;. ''' &lt;/value&gt; Public Shared ReadOnly Property IsService() As Boolean Get ' Determining whether or not the host application is a service is ' an expensive operation (it uses reflection), so we cache the ' result of the first call to this method so that we don't have to ' recalculate it every call. ' If we have not already determined whether or not the application ' is running as a service... If IsNothing(_isService) Then ' Get details of the host assembly. Dim entryAssembly As Reflection.Assembly = Reflection.Assembly.GetEntryAssembly ' Get the method that was called to enter the host assembly. Dim entryPoint As System.Reflection.MethodInfo = entryAssembly.EntryPoint ' If the base type of the host assembly inherits from the ' "ServiceBase" class, it must be a windows service. We store ' the result ready for the next caller of this method. _isService = (entryPoint.ReflectedType.BaseType.FullName = "System.ServiceProcess.ServiceBase") End If ' Return the cached result. Return CBool(_isService) End Get End Property Private Shared _isService As Nullable(Of Boolean) = Nothing #End Region End Class </code></pre> http://stackoverflow.com/questions/134956/how-do-you-perform-address-validation/153426#153426 0 Answer by Kramii for How do you perform address validation? Kramii 2008-09-30T14:57:54Z 2008-09-30T14:57:54Z <p>There is no global solution. For any given country it is at best rather tricky.</p> <p>In the UK, the PostOffice controlls postal addresses, and can provide (at a cost) address information for validation purposes.</p> <p>Government agencies also keep an extensive list of addresses, and these are centrally collated in the NLPG (National Land and Property Gazetteer).</p> <p>Actually validating against these lists is very difficult. Most people don't even know exactly how their address as it is held by the PostOffice. Some businesses don't even know what number they are on a particular street.</p> <p>Your best bet is to approach a company that specialises in this kind of thing.</p> http://stackoverflow.com/questions/122461/what-are-often-overlooked-steps-to-take-before-beginning-a-big-project/152445#152445 0 Answer by Kramii for What are often overlooked steps to take before beginning a big project Kramii 2008-09-30T09:58:34Z 2008-09-30T09:58:34Z <p>Make sure:</p> <ul> <li>You understand the purpose of the project.</li> <li>That there is a business case for the project.</li> <li>That the project has a sufficiently infulential sponsor.</li> <li>That sufficient resources likely to be available to the project (finances, people, time).</li> </ul> http://stackoverflow.com/questions/1524554/how-can-we-retrieve-data-from-database-in-asp-net-using-vb-as-language Comment by Kramii on how can we retrieve data from database in ASP.NET using VB as language? Kramii 2009-10-06T10:06:46Z 2009-10-06T10:06:46Z What kind of database? SQL Server? Access? http://stackoverflow.com/questions/29925/building-morale-in-the-dev-team/31355#31355 Comment by Kramii on Building morale in the dev team Kramii 2009-08-26T15:23:14Z 2009-08-26T15:23:14Z Thumbs-up for 7! http://stackoverflow.com/questions/29925/building-morale-in-the-dev-team/29926#29926 Comment by Kramii on Building morale in the dev team Kramii 2009-08-26T15:21:30Z 2009-08-26T15:21:30Z This is a great list. I'm not sure I want to get too friendly with my workmates. I prefer to keep things warm but business-like. http://stackoverflow.com/questions/29925/building-morale-in-the-dev-team/91287#91287 Comment by Kramii on Building morale in the dev team Kramii 2009-08-26T15:17:56Z 2009-08-26T15:17:56Z @Senfo: I agree whole-heatedly. Determining who is &quot;the best&quot; isn't easy. Skill level is one factor, as is &quot;fit&quot; with the rest of the team. I, too, have seen teams of very clever people with low output / job satisfaction. Nevertheless, I maintain that hiring &quot;only the best&quot; is still a worthwhile aspiration. Recognising that hiring good people is problematic may even be the first step towards achieving it. http://stackoverflow.com/questions/234467/tech-books-you-have-but-never-read/912689#912689 Comment by Kramii on Tech Books you have but never read Kramii 2009-08-11T08:56:05Z 2009-08-11T08:56:05Z Just read the dialogs, huh? http://stackoverflow.com/questions/386087/head-first-design-patterns-opinions-wanted/386215#386215 Comment by Kramii on 'Head First Design Patterns' opinions wanted Kramii 2009-08-11T08:45:58Z 2009-08-11T08:45:58Z As a design-patterns beginner I found this book invaluable in helping me understand what these patterns were for. It isn't a great reference book - but it isn't intended to be. http://stackoverflow.com/questions/53132/mouse-for-programmer/53280#53280 Comment by Kramii on Mouse for programmer Kramii 2009-07-10T16:05:25Z 2009-07-10T16:05:25Z I have just bought this mouse based on this answer, and have consigned my Intillimouse Optical to the draw. Thus far, I'm delighted that I did so. http://stackoverflow.com/questions/1095290/it-evaluating-quality-of-coding-how-do-we-know-whats-good/1098328#1098328 Comment by Kramii on IT evaluating quality of coding - how do we know what's good? Kramii 2009-07-08T15:30:43Z 2009-07-08T15:30:43Z @Bernard: Of course, you're absolutely right. In my experience, these are also some of the hardest things for a programmer to do well. They are also very difficult for a non-coder to evaluate, but no less important for being so. http://stackoverflow.com/questions/1095290/it-evaluating-quality-of-coding-how-do-we-know-whats-good/1098328#1098328 Comment by Kramii on IT evaluating quality of coding - how do we know what's good? Kramii 2009-07-08T14:43:57Z 2009-07-08T14:43:57Z @Bernard: What do you have in mind? http://stackoverflow.com/questions/319403/ruthlessly-compressing-large-images-for-the-web/319417#319417 Comment by Kramii on Ruthlessly compressing large images for the web Kramii 2009-07-03T10:46:32Z 2009-07-03T10:46:32Z PNGGauntlet is also worth trying. http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132789#132789 Comment by Kramii on Good excuses NOT to use version control Kramii 2009-07-03T10:43:11Z 2009-07-03T10:43:11Z And your own reputation tarnished in the process? No, I think its time to quit.. http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132580#132580 Comment by Kramii on Good excuses NOT to use version control Kramii 2009-07-03T10:40:45Z 2009-07-03T10:40:45Z Sometimes it is better to do something even if you are not &quot;allowed&quot; to do it. http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/559449#559449 Comment by Kramii on Good excuses NOT to use version control Kramii 2009-07-03T10:33:50Z 2009-07-03T10:33:50Z If you have such limited IT resources, perhaps writing a computer program isn't the best way to solve the problem at hand. http://stackoverflow.com/questions/836633/what-is-the-best-source-control-product-for-visual-studio-development/838375#838375 Comment by Kramii on What is the best source control product for Visual Studio development? Kramii 2009-07-03T10:21:40Z 2009-07-03T10:21:40Z I've just started using Vault and I think it is awesome. I previously used Source Safe (horrible). I tried Subversion + Tortoise. Unfortunately, SVN had a steep learning curve, and was fiddly to configure and use (I didn't try VisualSVN - it might have been better). But with Vault, <i>everything</i> is good. It is beautifully integrated with VS, and does its job well without getting in the way. Branching and merging are a dream. I believe a free single user licence is available if you want to try it out. http://stackoverflow.com/questions/1026895/if-there-one-thing-you-learned-along-the-way-that-you-would-tell-new-developers/1027123#1027123 Comment by Kramii on If there one thing you learned along the way that you would tell new developers, what would it be? Kramii 2009-06-22T14:50:13Z 2009-06-22T14:50:13Z ...but not always possible.