User Bevan - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T23:51:04Z http://stackoverflow.com/feeds/user/30280 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1777303/hidden-features-of-windows-forms 5 Hidden Features of Windows.Forms Bevan 2009-11-22T00:30:03Z 2009-11-27T04:48:38Z <p>Despite the growing popularity Web Applications, and WPF, there's still a lot of work being done in "old-style" Windows.Forms, especially for in-house ("bespoke") business software systems.</p> <p>So, what are the best (and most hidden) features and tricks of <strong>Windows.Forms</strong>, the things that can help us turn out useful applications faster?</p> <p>(I was somewhat surprised to see that this question hadn't already been asked!)</p> <p>As always for these kinds of questions ...</p> <ul> <li>One tip per answer, to allow the best to be voted to the top</li> <li>Don't repost an answer that's already here; vote it up instead</li> <li>Stay on topic - tips and tricks for Windows.Forms</li> </ul> <h3>Related questions</h3> <p>(Though, none of these touch on Windows.Forms much, if at all.)</p> <ul> <li><a href="http://stackoverflow.com/questions/9033/hidden-features-of-c">Hidden Features of C#</a></li> <li><a href="http://stackoverflow.com/questions/1643532/c-libraries-with-hidden-gems">C# Libraries with hidden gems</a></li> <li><a href="http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes">Hidden .NET Base Class Library Classes</a></li> </ul> http://stackoverflow.com/questions/1777303/hidden-features-of-windows-forms/1777363#1777363 4 Answer by Bevan for Hidden Features of Windows.Forms Bevan 2009-11-22T00:48:35Z 2009-11-26T18:20:39Z <p>Instead of the normal <code>Panel</code>, consider using <code>TableLayoutPanel</code> - it provides much the same functionality as the WPF <code>Grid</code> layout, but for WinForms.</p> <p>Great for creating dialogs and other windows that need to be resizable:</p> <p><img src="http://lh3.ggpht.com/%5FafoGSadSspw/Sw7GjGkcSaI/AAAAAAAAEC8/yVVnQJHFzME/s800/WindowsFormsApplication1%20-%20Microsoft%20Visual%20C%23%202008%20Express%20Edition%2022112009%2014130%20p.m..jpg" alt="Sample Resizable Dialog"></p> <p>Why do I like it?</p> <ul> <li>Saves fussing around with nested panels and anchors to get the resizing behaviour I want</li> <li>Automatic layout with a consistent amount of spacing between controls</li> </ul> <p>What don't I like?</p> <ul> <li>Can be slow to resize dynamically as the user resizes the form</li> </ul> http://stackoverflow.com/questions/1801113/clear-the-clr-memory/1801297#1801297 1 Answer by Bevan for Clear the CLR memory Bevan 2009-11-26T02:50:13Z 2009-11-26T06:18:02Z <p>Each process that runs managed code starts up a separate copy of the CLR runtime - and when any kind of process is terminated, the memory it consumed is reclaimed into the general pool.</p> <p>There is nothing shared to "flush" or "clear".</p> <p>Is it possible that your simulator tool isn't crashing "all the way" - that the process is sticking around in a faulted state?</p> http://stackoverflow.com/questions/1103141/how-can-i-disable-end-user-sorting-of-the-xtratreelist/1800427#1800427 1 Answer by Bevan for How can I disable end user sorting of the XtraTreeList? Bevan 2009-11-25T22:41:07Z 2009-11-25T22:41:07Z <p>For each column of your TreeList, turn off <code>AllowSort</code> - it's one of the subproperties listed under <code>OptionsColumn</code>.</p> http://stackoverflow.com/questions/1800420/how-to-prevent-editors-from-closing-when-background-processing-updates-xtratreeli 0 How to prevent editors from closing when background processing updates XtraTreeList Node? Bevan 2009-11-25T22:38:24Z 2009-11-25T22:38:24Z <p>I'm using the <a href="http://www.devexpress.com" rel="nofollow">DevExpress</a> <a href="http://www.devexpress.com/Products/NET/Controls/WinForms/Tree%5FList/" rel="nofollow">Xtra TreeList</a> control to display a hierarchical set of questions and responses - think of a complex survey form, containing sections, subsections and a variety of questions. </p> <p>The form is working in unbound mode, with no dataset nor any databinding.</p> <p>As a part of the information displayed for each question, some background is obtained by calling a webservice on a background thread; results from these webservice calls are then used to populate the TreeList via calls to <code>TreeListNode.SetValue()</code>. </p> <p>Presently, these calls to <code>SetValue()</code> are causing any active editors to close, discarding the user's current input - a very user <em>unfriendly</em> experience.</p> <p><strong>How can I ensure the user's editing process is unaffected by these background updates?</strong></p> <p>The only similar questions I've found have been on the DevExpress forums, where the suggestion is a forced commit of the user's entries, which avoids loss of data but otherwise does nothing to fix a poor user experience. Since these all dated from 2007, I'm hoping the situation has now changed. Is it possible to update nodes without altering the state of the users own activity?</p> <p>Background: A typical screen would have 500+ rows, with the webservice call for for each row taking around 0.6s to return. Forcibly committing or cancelling the user's actions every 0.6s is simply not acceptable, and forcing users to wait for processing to complete (>5minutes) before they can make any changes is equally poor.</p> http://stackoverflow.com/questions/1765761/subdomain-not-reading-modules-or-themes-folder-under-sites-all/1777928#1777928 1 Answer by Bevan for Subdomain not reading modules or themes folder under sites/all/ Bevan 2009-11-22T05:41:07Z 2009-11-22T05:41:07Z <p>If the themes and modules under <code>sites/all</code> are unavailable for both sites - the main site and your subdomain - then the problem may be around accessibility of the folder.</p> <p>Regardless of the user account you use to access the site, it's almost certain that the website server itself (whether Apache, IIS or Xyz) runs as a different account. If that account doesn't have rights to scan for, and read, files under <code>sites/all</code> then they won't show up.</p> <p>Compare the permissions (and user/group details, if running on a Unix server) between your regular <code>modules</code> directory and <code>sites/all</code> to find any differences, and fix any you find.</p> http://stackoverflow.com/questions/1777629/how-to-listen-on-multiple-ip-addresses/1777721#1777721 3 Answer by Bevan for How to listen on multiple IP addresses? Bevan 2009-11-22T03:35:50Z 2009-11-22T03:35:50Z <p>Technically, your server never has any IP addresses assigned to it.</p> <p>Instead, individual network interfaces may be assigned IP addresses. Usually, each NIC gets one IP address, but that's just the most common case.</p> <p>If you want to control which interfaces are listening for incoming connections on your chosen port, you'll need to create a separate socket for each one.</p> http://stackoverflow.com/questions/793411/what-is-the-most-lightweight-winforms-control/1751211#1751211 1 Answer by Bevan for What is the most "lightweight" winforms control? Bevan 2009-11-17T19:34:12Z 2009-11-17T19:34:12Z <p>Here's an out-of-the-box solution from Microsoft.</p> <p>Check out <a href="http://msdn.microsoft.com/en-us/vbasic/bb735936.aspx" rel="nofollow">Visual Basic PowerPack 3.0</a>. Don't worry too much about the name - these are components from the Visual Basic Team, but they work just fine for C# developers too.</p> <p>One of the components included is <code>LineShape</code>, which does exactly what you'd expect from the name.</p> <p>If you're targeting earlier versions of the framework, you could include the assembly with your application. But, if you're targeting 3.5 SP1 or higher, the powerpack is included.</p> http://stackoverflow.com/questions/1716874/is-it-possible-to-do-an-algebraic-curve-fit-with-just-a-single-pass-of-the-sample/1731638#1731638 0 Answer by Bevan for Is it possible to do an algebraic curve fit with just a single pass of the sample data? Bevan 2009-11-13T20:18:45Z 2009-11-13T20:18:45Z <p>Assuming that you don't know which point should belong to which curve, something like a <a href="http://en.wikipedia.org/wiki/Hough%5Ftransform" rel="nofollow">Hough Transform</a> might provide what you need.</p> <p>The Hough Transform is a technique that allows you to identify structure within a data set. One use is for computer vision, where it allows easy identification of lines and borders within the field of sight.</p> <p>Advantages for this situation: </p> <ul> <li>Each point need be considered only once</li> <li>You don't need to keep a data structure for each candidate line, just one (complex, multi-dimensional) structure</li> <li>Processing of each line is simple</li> <li>You can stop at any point and output a set of good matches</li> <li>You never discard any data, so it's not reliant on any accidental locality of references</li> <li>You can trade off between accuracy and memory requirements</li> <li>Isn't limited to exact matches, but will highlight partial matches too.</li> </ul> <p>An approach</p> <p>To find cubic fits, you'd construct a 4-dimensional Hough space, into which you'd project each of your data-points. Hotspots within Hough space would give you the parameters for the cubic through those points.</p> http://stackoverflow.com/questions/1716874/is-it-possible-to-do-an-algebraic-curve-fit-with-just-a-single-pass-of-the-sample/1731576#1731576 0 Answer by Bevan for Is it possible to do an algebraic curve fit with just a single pass of the sample data? Bevan 2009-11-13T20:07:23Z 2009-11-13T20:07:23Z <p>Given the nature of your data:</p> <blockquote> <p>the points may lie anywhere on the X axis between 0.0 and 1.0, but the Y values will always be either 1.0 or 0.0.</p> </blockquote> <p>Then you don't need even a single pass, as these two lines will pass exactly through every point:</p> <ul> <li>X = [0.0 ... 1.0], Y = 0.0</li> <li>X = [0.0 ... 1.0], Y = 1.0</li> </ul> <p>Two short line segments, unit length, and <em>every</em> point falls on one line or the other.</p> <p>Admittedly, an algorithm to find a good curve fit for arbitrary points in a single pass is interesting, but (based on your question), that's not what you need.</p> http://stackoverflow.com/questions/1699254/the-three-rome-object-models-design-pattern/1699263#1699263 0 Answer by Bevan for The Three ROME Object Models Design Pattern Bevan 2009-11-09T05:41:20Z 2009-11-09T05:41:20Z <p>Looks to me like it could be a protocol style variation of the <a href="http://en.wikipedia.org/wiki/Adapter%5Fpattern" rel="nofollow"><code>Adapter</code></a> pattern.</p> http://stackoverflow.com/questions/1695671/remove-3-oldest-elements-from-a-list-in-c/1695744#1695744 4 Answer by Bevan for Remove 3 oldest elements from a List<> in C# Bevan 2009-11-08T08:16:08Z 2009-11-08T08:16:08Z <p>If you're willing to replace the list with a new one, you could try this:</p> <pre><code>stuff = stuff.OrderBy( c =&gt; c.Date).Skip(3).ToList(); </code></pre> <p>On the other hand, if you need <code>stuff</code> to remain the same exact <code>List&lt;T&gt;</code> instance, you could sort it and then remove a range by index:</p> <pre><code>stuff.Sort(...); stuff.RemoveRange(0, 3); </code></pre> http://stackoverflow.com/questions/1655779/parse-nested-groups/1655798#1655798 0 Answer by Bevan for Parse nested groups Bevan 2009-10-31T22:29:22Z 2009-10-31T22:29:22Z <p>A recursive regular expression <em>might</em> solve the problem - but the complexity of it may be too high to easily maintain (and I speak as someone who once implemented and sold a Regular Expression engine).</p> <p>I'm <em>not</em> going to give you a complete solution - but here's one way to solve the problem.</p> <p>Your output object needs to change to allow for the nested groups, something like this:</p> <pre><code>public class Group { public string Name { get; set; } public string GroupPath { get; set; } public IEnumerable&lt;VarBlock&gt; Variables { get; } public IEnumerable&lt;Group&gt; NestedGroups { get; } } </code></pre> <p>(Note use of properties instead of public members)</p> <p>Assuming your input stream is a line based format, create a function that divides the string into lines:</p> <pre><code>public Queue&lt;string&gt; GetLines(string definition) { ... } </code></pre> <p>Then, create a routine to parse a group:</p> <pre><code>public Group ParseGroup(Queue&lt;string&gt; lines) { ... } </code></pre> <ul> <li>When this routine encounters the start of a group, it should recursively call itself to parse the nested group and then add the result to <code>NestedGroups</code>.</li> <li>When this routine encounters the end of a group, it should finish assembling the block, and return the object.</li> </ul> <p>Hope this is helpful.</p> http://stackoverflow.com/questions/1615330/un-published-items-showing-in-drupal-search-results-google-search-appliacne/1640241#1640241 0 Answer by Bevan for Un-Published items showing in Drupal search results (google search appliacne) Bevan 2009-10-28T21:30:29Z 2009-10-28T21:30:29Z <p>In order to keep the Google Appliance more up to date, you might try out <a href="http://drupal.org/project/xmlsitemap" rel="nofollow">XmlSiteMap</a>, a module that publishes a proper xml sitemap for all your content.</p> <p>For an online website, publishing a sitemap is a good way to keep the search engines up to date, as they can use it to know about new pages and to purge old pages. I'm assuming that the Google Appliance would use this too,.</p> http://stackoverflow.com/questions/1639386/low-fi-learning-management-system/1640144#1640144 0 Answer by Bevan for Low-fi Learning Management System? Bevan 2009-10-28T21:12:23Z 2009-10-28T21:12:23Z <p>Drupal can do everything you've described - with existing, well known, modules. No coding required, but you would need to do a reasonable amount of configuration.</p> <p>Here are some places to start ...</p> <ul> <li>Use <a href="http://drupal.org/project/cck" rel="nofollow">CCK to define "Course" nodes</li> <li>Add Views</a> to display course lists</li> <li>Add some more CCK to allow links between Courses and users (Jeff Eaton has a <a href="http://www.lullabot.com/articles/photo-galleries-views-attach" rel="nofollow">photo gallery tutorial</a> which shows the techniques)</li> <li>Configure Users to allow self registration</li> </ul> <p>I don't know how much you know about Drupal already, so it's hard to give a time estimate, but this shouldn't take you too long to organise.</p> http://stackoverflow.com/questions/1620200/net-what-is-the-best-correct-way-to-iterator-through-a-list-and-remove-misc-m/1620209#1620209 3 Answer by Bevan for .NET - What is the best/correct way to iterator through a List and remove misc. members? Bevan 2009-10-25T06:52:21Z 2009-10-25T06:52:21Z <p>Assuming you have a <code>List&lt;T&gt;</code>, one efficient way is to iterate through the list in reverse order, removing items as you go:</p> <pre><code>for(int i = myList.Count-1; i--; i&gt;=0) { if (ShouldBeRemoved(myList[i])) { myList.RemoveAt(i); } } </code></pre> <p>If you instead have <code>IEnumerable&lt;T&gt;</code>, it gets more difficult as you can't alter a list while iterating.</p> http://stackoverflow.com/questions/1611611/net-orm-for-database-with-no-primary-keys-defined/1611654#1611654 3 Answer by Bevan for .NET ORM for Database with no primary keys defined Bevan 2009-10-23T06:16:46Z 2009-10-23T06:16:46Z <p>I think you've already identified the key you need, possibly without realising it.</p> <p>Your database <strong>does</strong> have primary keys, they're just not enforced by the database engine.</p> <p>For example, your <code>Customer</code> table has a <code>CustomerNumber</code> field, and so on.</p> <p>Any .NET ORM (I happen to favour <a href="https://www.hibernate.org/343.html" rel="nofollow">NHibernate</a>) can manage just fine for Read, and Update.</p> <p>Create and Delete are the times you may run into issue.</p> <p>For Create, you need to generate new valid CustomerNumber values; and for Delete you need to ensure you don't violate any foreign key relationships. (In NHibernate you can use a primary key type of <code>assigned</code> which basically means your code will assign key values and NHibernate has to use them.)</p> http://stackoverflow.com/questions/1610896/can-il-produced-by-c-4-0-compiler-run-on-clr-2-0/1610970#1610970 1 Answer by Bevan for Can IL produced by C# 4.0 compiler run on CLR 2.0 ? Bevan 2009-10-23T01:35:07Z 2009-10-23T01:35:07Z <p>It depends on the compiler.</p> <p>Indications so far seem to indicate that the C# 4.0 compiler will be able to target the .NET 2.0 runtime, generating IL that is compatible with that runtime and ensuring that you only reference assemblies that also run on .NET 2.0.</p> <p>Note that targeting is a choice, though - and there's no guarantee that any other compiler will have the same feature.</p> <p>Mostly, I guess that it's a decision that will be made by the team implementing the compiler.</p> <p>For example, it's likely that the C# and VB.NET compiler teams will support multitargeting (though they might back off from that and leave it as a Visual Studio feature, where VS chooses different compilers for different targets).</p> <p>Other vendors using the .NET framework may make other decisions. </p> http://stackoverflow.com/questions/1592724/best-quickest-way-to-learn-java-for-a-seasoned-net-c-and-c-developer/1592733#1592733 2 Answer by Bevan for Best/quickest way to learn Java for a seasoned .NET/C# and C++ developer Bevan 2009-10-20T06:03:40Z 2009-10-20T06:03:40Z <p>Perhaps one of the best ways would be to get a copy of Bruce Eckel's <a href="http://www.mindview.net/Books/TIJ4" rel="nofollow">Thinking in Java</a>. </p> <p>Much more than simply covering the syntax of the language, this book goes into the background - as the title says, "How to <strong>think</strong> in Java" so you can write pure Java code, not C# (or C++) code using Java Syntax.</p> http://stackoverflow.com/questions/1592703/convert-non-ascii-domain-to-smtp-compatible/1592718#1592718 0 Answer by Bevan for Convert non-ascii domain to SMTP compatible Bevan 2009-10-20T05:57:52Z 2009-10-20T05:57:52Z <p>The problem with this approach is that you'll be <em>changing</em> the email addresses.</p> <p>The email addresses <code>bevan@example.com</code> and <code>bevän@example.com</code> are <em>different</em> email addresses, however much they appear the same.</p> <p>Making the change you suggest will <em>break</em> email - people might receive the messages, but they won't be able to reply to them.</p> <p>Your SMTP server that doesn't handle accented characters sounds like a dinosaur. Much as it might be a pain in the proverbial, replacement and/or upgrade is likely the best solution.</p> <p>You'll likely be able to get more appropriate assistance over on <a href="http://www.serverfault.com" rel="nofollow">ServerFault</a>.</p> http://stackoverflow.com/questions/1591241/converting-a-decimal-number-into-binary/1591266#1591266 3 Answer by Bevan for Converting a decimal number into binary Bevan 2009-10-19T21:27:05Z 2009-10-19T21:27:05Z <p>You need to do <code>integer</code> division.</p> <pre><code>// Floating point 150 ÷ 128 = 1.171875 // Integer 150 ÷ 128 = 1 remainder 22 </code></pre> <p>So, you write down the <code>1</code> and carry <code>22</code> to the next step.</p> http://stackoverflow.com/questions/1590504/what-would-be-your-choice-of-perl-xml-parsers-for-files-greater-than-15-gb/1590537#1590537 14 Answer by Bevan for What would be your choice of Perl XML Parsers for files greater than 15 GB? Bevan 2009-10-19T19:14:25Z 2009-10-19T19:14:25Z <p>If you're parsing files of that size, you'll want to avoid any parser that tries to load the entire document in memory and construct a DOM (domain object model).</p> <p>Instead, look for a <a href="http://www.saxproject.org/" rel="nofollow">SAX</a> style parser - one that treats the input file as a stream, raising events when events and attributes are encountered. This approach allows you to process the file gradually, without having to hold the entire thing in memory at once.</p> http://stackoverflow.com/questions/1581394/split-value-in-24-randomly-sized-parts-using-c/1581425#1581425 7 Answer by Bevan for Split value in 24 randomly sized parts using C# Bevan 2009-10-17T04:39:59Z 2009-10-17T04:39:59Z <p>Assuming that you don't want to have much (any) control over the distribution of sizes, here's an approach that would work (pseudo-code).</p> <ol> <li>Create a list of 24 random values, generated however you like, at whatever scale</li> <li>Find the sum of this list</li> <li>Create your final list by scaling the 24 random values against your total</li> </ol> <p><strong>Notes</strong></p> <ul> <li>If you use floating point arithmetic, you may be off by one or two. To avoid this, don't use scaling to complete the last value, instead fill it in with the total remaining.</li> <li>If you <em>do</em> need tighter control over the distribution, use a different method to generate your initial array, but the rest doesn't need to change.</li> </ul> http://stackoverflow.com/questions/1569549/how-to-access-controls-by-name-with-silktest 0 How to access controls by Name with SilkTest? Bevan 2009-10-14T23:24:17Z 2009-10-14T23:24:17Z <p>We have an automated test suite, using Borland Silk Test 2008 R2 to carry out regression tests of a new in-house product.</p> <p>The test script consistently refers to controls by their index:</p> <pre><code>Form.Control3 ... </code></pre> <p>We've made a "minor" change to the main form of the application, and now the control that used to have index 3 has index 4.</p> <p>The easy, but tedious, fix is to edit the scripts to reference <code>Control4</code> instead of <code>Control3</code>, but this remains pretty brittle.</p> <p><strong>How do we instead identify the controls by name - so instead of referencing <code>Control3</code> we specify "the control named <em>ribbon</em>".</strong> </p> <p>(We believe that referencing things by name will be significantly less brittle.)</p> <p>We've tried the obvious:</p> <pre><code>Form.ribbon </code></pre> <p>which doesn't execute at all.</p> <p>The primitive intellisense in the editor doesn't show much of use - no <code>Controls</code> property, no <code>GetXX</code> or <code>FindXX</code> methods.</p> <p>Our application is written using C# on .NET 3.5, and does make use of third party controls.</p> http://stackoverflow.com/questions/1557188/is-there-a-c-tool-that-will-let-me-execute-an-arbitrary-block-of-code/1557513#1557513 0 Answer by Bevan for Is there a C# tool that will let me execute an arbitrary block of code? Bevan 2009-10-12T23:33:38Z 2009-10-12T23:33:38Z <p>Another approach is offered by <a href="http://www.testdriven.net/" rel="nofollow">TestDriven.Net</a>, which allows you to click on any method in the Visual Studio code editor and run it directly. </p> <p>This can be useful for debugging code that's otherwise buried a little deep to conveniently access.</p> http://stackoverflow.com/questions/1552086/concurrency-issues-while-accessing-data-via-reflection-in-c/1552115#1552115 3 Answer by Bevan for Concurrency issues while accessing data via reflection in C# Bevan 2009-10-11T23:46:16Z 2009-10-11T23:46:16Z <p>The only way you're going to keep things "transparent" to the code being monitored is to make the monitoring code robust in the face of state changes.</p> <p>Some suggestions</p> <ol> <li><p>Don't walk a shared list - make a copy of the list into a local List instance as soon (and as fast) as you can. Once you have a local (non-shared) list of instances, noone can monkey with the list.</p></li> <li><p>Make things as robust as you can - putting every read into a try/catch might feel nasty, but you'll probably need to do it.</p></li> </ol> http://stackoverflow.com/questions/1549603/there-is-any-way-to-access-directly-a-dll-internal-classes-without-copyright-infr/1549617#1549617 1 Answer by Bevan for There is any way to access directly a dll internal classes without copyright infringment? Bevan 2009-10-11T01:48:51Z 2009-10-11T01:48:51Z <p>This is a relatively common problem - there are some useful classes within the runtime that are marked internal and are otherwise unavailable for use.</p> <p>Use of <code>[InternalsVisibleTo]</code> is, as you mention, entirely under control of the assembly developer - as this attribute is intended to allow co-developed assemblies to share code that isn't visible to the unwashed masses.</p> <p>Copying code verbatim would almost certainly be a problem as well.</p> <p>What you can do (and remember IANAL - I am not a lawyer) is to develop your own variation, giving full credit to the original Assembly.</p> http://stackoverflow.com/questions/1542824/c-initialization-of-instance-fields-vs-local-variables/1542868#1542868 1 Answer by Bevan for C#: Initialization of instance fields vs. local variables Bevan 2009-10-09T09:46:34Z 2009-10-09T23:44:45Z <p>When a chunk of memory is allocated for a new object instance, the runtime writes zeros across the entire block, ensuring that the new object starts at a known state - this is why integers default to 0, doubles default to 0.0, pointers &amp; object references to null, and so on.</p> <p>It would be possible, in theory, to do the same to stack frames allocated as as part of method calls. The overhead, though would be high - it would <strong>drastically</strong> slow down calls to other methods, and therefore isn't attempted.</p> http://stackoverflow.com/questions/1542701/drupal-no-www-linking/1542714#1542714 7 Answer by Bevan for Drupal no www. linking Bevan 2009-10-09T09:10:29Z 2009-10-09T09:10:29Z <p>Auto conversion of URLs into links is handled by the "<em>input format</em>" specified for the node.</p> <p>To avoid this happening for a specific node, create a new input format where the <strong>Url Filter</strong> is not enabled.</p> http://stackoverflow.com/questions/1541053/adding-registry-key-in-c-shows-when-i-read-it-back-but-not-in-regedit/1541080#1541080 0 Answer by Bevan for Adding registry key in C# shows when I read it back, but not in regedit Bevan 2009-10-08T23:24:08Z 2009-10-08T23:24:08Z <p>Sounds to me that, even though you <em>think</em> you're running with elevated privileges, you're not - and that your programs registry access is being silently redirected somewhere safe.</p> <p>Check out <a href="http://msdn.microsoft.com/en-us/library/aa965884.aspx" rel="nofollow">Registry Virtualization</a> for details.</p> http://stackoverflow.com/questions/1810172/md5-for-emails-too/1810194#1810194 Comment by Bevan on md5 for emails too? Bevan 2009-11-27T19:15:36Z 2009-11-27T19:15:36Z I'm sure that MD5 can be revered, just not reversed. :-) http://stackoverflow.com/questions/1777629/how-to-listen-on-multiple-ip-addresses/1777721#1777721 Comment by Bevan on How to listen on multiple IP addresses? Bevan 2009-11-22T04:13:27Z 2009-11-22T04:13:27Z I suspect it's a case of &quot;let's make the common case easy to achieve&quot; by the designers of the framework, providing a useful shortcut. http://stackoverflow.com/questions/1716874/is-it-possible-to-do-an-algebraic-curve-fit-with-just-a-single-pass-of-the-sample/1731576#1731576 Comment by Bevan on Is it possible to do an algebraic curve fit with just a single pass of the sample data? Bevan 2009-11-14T01:03:41Z 2009-11-14T01:03:41Z To quote the original question: &quot;I need to fit thousands of curves simultaneously&quot; http://stackoverflow.com/questions/19801/what-interview-question-weeds-out-bad-applicants/19836#19836 Comment by Bevan on What interview question weeds out 'bad' applicants? Bevan 2009-11-10T23:56:12Z 2009-11-10T23:56:12Z I'm not sure whether these are intentionally things that sound like questions, but aren't, or not? e.g. Virtual inheritance would mean that you can override the inheritance to change it, and I've never seen a system that allows that - which might be why it's a good interview question. Or, maybe, the question is around the difference between virtual members and non-virtual members of a class, which is also a good interview question, but less interesting. http://stackoverflow.com/questions/692931/ms-stylecop-and-cruisecontrol-net/694291#694291 Comment by Bevan on MS StyleCop and CruiseControl.NET Bevan 2009-11-09T23:16:14Z 2009-11-09T23:16:14Z TeamCity Professional is the free edition - it's limited to 20 build configurations and 3 build servers, which isn't much of a limitation at all. My work purchased the Enterprise edition to gain unlimited build configurations and LDAP integration. The 20 build configuration limit isn't going to limit many uses. All of the limitations I've run into are problems with CruiseControl: Lack of documentation, the need to hand-configure XML, lack of polish and so on. http://stackoverflow.com/questions/1675844/garbage-collector-in-real-time-system/1675951#1675951 Comment by Bevan on Garbage Collector in Real-Time System Bevan 2009-11-08T03:08:56Z 2009-11-08T03:08:56Z @SMKamran - &quot;unmanaged environment ... much better performance and speed&quot;. Time to go and check your base assumptions - a managed environment does not automatically mean poor performance and slow execution. In fact, because the runtime has more information available, and more scope to adapt, more optimization is possible. You wouldn't believe any references I gave - so please, go do some real research and check your facts. http://stackoverflow.com/questions/1639386/low-fi-learning-management-system/1640144#1640144 Comment by Bevan on Low-fi Learning Management System? Bevan 2009-10-30T22:48:14Z 2009-10-30T22:48:14Z While Drupal <i>is</i> very good at static content, that's not the limit. Check out the title of the homepage for <a href="http://www.drupal.org" rel="nofollow">drupal.org</a>: &quot;Drupal - Community Plumbing&quot;. There's a lot of stuff in Drupal explicitly oriented at communities of people wanting/needing to work together. http://stackoverflow.com/questions/1639386/low-fi-learning-management-system/1640144#1640144 Comment by Bevan on Low-fi Learning Management System? Bevan 2009-10-30T22:44:30Z 2009-10-30T22:44:30Z Of course coding your own modules is an option - from what I've read, writing your own Drupal Modules isn't difficult, and you <i>would</i> get exactly what you want. Downside is the effort - using/configuring a module can be a lot faster than writing your own code. http://stackoverflow.com/questions/1634261/csharp-not-all-code-paths-return-a-value/1634285#1634285 Comment by Bevan on CSharp: Not all code paths return a value. Bevan 2009-10-27T23:50:31Z 2009-10-27T23:50:31Z Incorrect: If the problem with the <code>foreach</code> loop is addressed, both branches of the inner if/else will return values and the compiler will be happy. http://stackoverflow.com/questions/674505/looking-for-an-alternative-to-trac-project-management-and-bug-tracking-system-fo/675956#675956 Comment by Bevan on Looking for an alternative to Trac: Project management and bug tracking system for multiple projects. Bevan 2009-10-27T22:36:10Z 2009-10-27T22:36:10Z I just checked - look for &quot;JIRA Subversion Plugin&quot;, from Atlassian themselves. Usable for version 3.12 and up. http://stackoverflow.com/questions/674505/looking-for-an-alternative-to-trac-project-management-and-bug-tracking-system-fo/675956#675956 Comment by Bevan on Looking for an alternative to Trac: Project management and bug tracking system for multiple projects. Bevan 2009-10-27T22:34:30Z 2009-10-27T22:34:30Z JIRA does integrate with SVN; tracking from an issue to the code modified to address that issue is something we use across a number of projects at work. http://stackoverflow.com/questions/1616716/my-program-crashes-when-gc-perform-garbage-collection/1616718#1616718 Comment by Bevan on My program crashes when GC perform garbage collection Bevan 2009-10-24T02:07:16Z 2009-10-24T02:07:16Z Calling GC.Collect() can provoke a crash on another thread if that thread contains unmanaged code that references unpinned memory on the managed heap. http://stackoverflow.com/questions/1616189/show-cpu-registers-in-vs2008-watch-window/1616328#1616328 Comment by Bevan on Show CPU Registers in VS2008 watch window Bevan 2009-10-23T22:57:29Z 2009-10-23T22:57:29Z Surely qualifies as one of the shortest useful answers on SO. :-) http://stackoverflow.com/questions/381049/which-net-orm-can-deal-with-this-scenario Comment by Bevan on Which .net ORM can deal with this scenario Bevan 2009-10-23T06:18:21Z 2009-10-23T06:18:21Z Interesting that you seek to achieve &quot;simplicity&quot; by avoiding NHibernate. While NHibernate does have complexities, those are for complex situations - simple things really are simple. http://stackoverflow.com/questions/1610896/can-il-produced-by-c-4-0-compiler-run-on-clr-2-0/1610909#1610909 Comment by Bevan on Can IL produced by C# 4.0 compiler run on CLR 2.0 ? Bevan 2009-10-23T01:31:05Z 2009-10-23T01:31:05Z Visual Studio 2010 is also going to support multi-targeting (<a href="http://blogs.msdn.com/jasonz/archive/2009/02/20/a-new-look-for-visual-studio-2010.aspx" rel="nofollow">blogs.msdn.com/jasonz/archive/&hellip;</a>)