User bdukes - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T13:04:25Z http://stackoverflow.com/feeds/user/2688 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1792101/generic-method-with-actiont-parameter/1792189#1792189 4 Answer by bdukes for Generic method with Action<T> parameter bdukes 2009-11-24T18:59:49Z 2009-11-24T18:59:49Z <p>Why are you instantiating an <code>Orangutan</code> if you are supposed to be accepting any <code>IAnimal</code>?</p> <pre><code>public void ValidateUsing&lt;T&gt;(Action&lt;T&gt; action) where T : IAnimal, new() { T animal = new T(); action(animal); //Compile error 2 </code></pre> <p>If you reuse your generic parameter, you won't have any type issues...</p> <p>Now, with regard to why your code doesn't work, all that you're saying is that the type <code>T</code> will derive from <code>IAnimal</code>. However, it could just as easily be a <code>Giraffe</code> as an <code>Orangutan</code>, so you can't just assign an <code>Orangutan</code> or <code>IAnimal</code> to a parameter of type <code>T</code>.</p> http://stackoverflow.com/questions/1088053/vb-net-string-manipulation-or/1088175#1088175 11 Answer by bdukes for Vb.Net String Manipulation & or + bdukes 2009-07-06T17:20:50Z 2009-11-20T15:18:49Z <p>The <a href="http://msdn.microsoft.com/en-us/library/9c5t70w2.aspx" rel="nofollow"><code>+</code></a> and <a href="http://msdn.microsoft.com/en-us/library/wfx50zyk.aspx" rel="nofollow"><code>&amp;</code></a> operators are <em>not</em> identical in VB.NET.</p> <p>Using the <code>&amp;</code> operator indicates your intention to concatenate strings, while the <code>+</code> operator indicates your intention to add numbers. Using the <code>&amp;</code> operator will convert both sides of the operation into strings. When you have mixed types (one side of the expression is a string, the other is a number), your usage of the operator will determine the result.</p> <pre><code>1 + "2" = 3 'This will cause a compiler error if Option Strict is on' 1 &amp; "2" = "12" 1 &amp; 2 = "12" "text" + 2 'Throws an InvalidCastException since "text" cannot be converted to a Double' </code></pre> <p>So, my guideline (aside from avoiding mixing types like that) is to use the <code>&amp;</code> when concatenating strings, just to make sure your intentions are clear to the compiler, and avoid impossible-to-find bugs involving using the <code>+</code> operator to concatenate.</p> http://stackoverflow.com/questions/1750977/jquery-bind-and-unbind-event-with-paramters/1751010#1751010 1 Answer by bdukes for jQuery bind and unbind event with paramters bdukes 2009-11-17T19:00:50Z 2009-11-18T15:30:09Z <p>To bind a function that takes parameters, use an anonymous function to act as a closure over the parameters.</p> <pre><code>jQuery(function($) { var param = 'text'; $('#textbox').click(function() { EventWithParam(param); // or just use it without calling out to another function $(this).text(param); }); }); </code></pre> <p>Your example is executing the <code>EventWithParam</code> function, and then trying to bind to the result of that function call.</p> <p>Calling <a href="http://docs.jquery.com/Events/unbind#typefn" rel="nofollow"><code>unbind</code></a> without specifying a function will unbind all handlers for the specified type of event (including the anonymous function). If you want to unbind that function specifically, you'll need to provide it with a name, like this:</p> <pre><code>jQuery(function($) { var param = 'text', clickCallback = function() { EventWithParam(param); // or just use it without calling out to another function $(this).text(param); }; $('#textbox').click(clickCallback); }); </code></pre> http://stackoverflow.com/questions/1742422/jquery-validation-changing-required-attribute-based-on-other-fields/1742646#1742646 0 Answer by bdukes for jQuery Validation - Changing "Required" Attribute based on other fields bdukes 2009-11-16T14:52:40Z 2009-11-16T14:52:40Z <p>You can specify an <a href="http://docs.jquery.com/Plugins/Validation/Methods/required#dependency-expression" rel="nofollow">expression</a> or <a href="http://docs.jquery.com/Plugins/Validation/Methods/required#dependency-expression" rel="nofollow">callback</a> when indicating that a field is required. The validation plugin will then evaluate the expression or callback before validating the field.</p> <p>Here's an example:</p> <pre><code>$("#ref").validate({ rules: { ref_1_email: { required: function(element) { return $("#ref_1_fname").val() || $("ref_1_lname").val(); } } } }); $("#ref_1_email").blur(function() { $("#ref_1_fname").valid(); $("#ref_1_lname").valid(); }); </code></pre> <p>There's probably some refactoring that you can do so that you don't have to repeat all of this for each field...</p> http://stackoverflow.com/questions/1716270/why-does-jquery-1-3-2-not-find-an-existing-control-by-id-what-am-i-doing-wrong/1716310#1716310 0 Answer by bdukes for Why does jQuery 1.3.2 not find an existing control by ID - what am I doing wrong??? bdukes 2009-11-11T16:24:38Z 2009-11-11T16:24:38Z <p>Escaping the percent signs seems to work.</p> <pre><code>$("#FormView1_CopaBOM973row\\%18\\%_dkF") </code></pre> http://stackoverflow.com/questions/1715884/dotnetnuke-5-how-do-you-edit-module-content-in-dotnetnuke-5/1716205#1716205 4 Answer by bdukes for DotNetNuke 5: How do you edit module content in DotNetNuke 5? bdukes 2009-11-11T16:08:16Z 2009-11-11T16:08:16Z <p>There isn't anything that has changed substantially between DNN 4 and DNN5 in terms of editing module content. First, make sure that you're logged in with a user who has edit permissions to the module. Then make sure that you're viewing the site in Edit mode (the radio buttons on the top left). Then, there will probably be an "action menu" in the top left corner of the module's container, from which you can access the module's edit page.</p> <p>If you're still having trouble, it may be that you're using a container that doesn't have the standard action menu. You can try changing the container for the page or the site (in page or site settings) to see if that addresses the issue.</p> <p>Finally, which module are you trying to edit content in? Is it an HTML module, or some other module?</p> http://stackoverflow.com/questions/1715707/how-can-i-change-markers-images-in-this-javascript/1715836#1715836 1 Answer by bdukes for How can i change Markers images in This javascript bdukes 2009-11-11T15:16:07Z 2009-11-11T15:16:07Z <p>The <a href="http://code.google.com/apis/maps/documentation/reference.html#GMarker" rel="nofollow"><code>GMarker</code></a> constructor takes a <a href="http://code.google.com/apis/maps/documentation/reference.html#GMarkerOptions" rel="nofollow"><code>GMarkerOptions</code></a> as the second parameter. You can use that to specify a <a href="http://code.google.com/apis/maps/documentation/reference.html#GIcon" rel="nofollow"><code>GIcon</code></a> to use for the marker.</p> <p>It may look something like this:</p> <pre><code>var marker = new GMarker(point, { icon: new GIcon( G_DEFAULT_ICON, '/images/custom_marker.png') }); </code></pre> <p>This uses the default icon as a baseline, and changes just the main image. There are a number of other properties you can set on the icon, depending on whether you need to change the shadow, etc.</p> <p>You can also upload your image to a site, like the <a href="http://www.powerhut.co.uk/googlemaps/custom%5Fmarkers.php" rel="nofollow">Google Map Custom Marker Maker</a>, which will create the extra images and javascript for the icon.</p> <p>Finally, check out the <a href="http://groups.google.com/group/Google-Maps-API/web/examples-tutorials-custom-icons-for-markers?pli=1" rel="nofollow">Custom Icons for Markers</a> topic on the Google Maps group.</p> http://stackoverflow.com/questions/1688624/guid-tryparse/1688645#1688645 2 Answer by bdukes for GUID.TryParse() ? bdukes 2009-11-06T16:20:21Z 2009-11-06T16:20:21Z <p>In terms of why there isn't one, it's an oversight. There will be a <code>Guid.TryParse</code> in .NET 4 (see <a href="http://blogs.msdn.com/bclteam/archive/2009/10/21/what-s-new-in-the-bcl-in-net-4-beta-2-justin-van-patten.aspx" rel="nofollow">BCL blog post</a> for details).</p> http://stackoverflow.com/questions/1663565/list-all-devices-partitions-and-volumes-in-powershell/1663623#1663623 2 Answer by bdukes for List all devices, partitions and volumes in Powershell bdukes 2009-11-02T20:52:23Z 2009-11-02T20:52:23Z <p>To get all of the file system drives, you can use the following command:</p> <pre><code>gdr | where {$_.Provider.Name -eq "FileSystem"} </code></pre> <p><code>gdr</code> is an alias for <code>Get-PSDrive</code>, which includes all of the "virtual drives" for the registry, etc.</p> http://stackoverflow.com/questions/1646597/why-the-net-framework-class-library-is-not-open-source/1646629#1646629 10 Answer by bdukes for Why the .NET Framework Class Library is not Open Source? bdukes 2009-10-29T21:22:02Z 2009-10-29T21:22:02Z <p>The <a href="http://weblogs.asp.net/scottgu/archive/2008/01/16/net-framework-library-source-code-now-available.aspx" rel="nofollow">source is openly available</a> (though with a very restrictive license) for the following components of .NET</p> <blockquote> <ul> <li>.NET Base Class Libraries (including System, System.CodeDom, System.Collections, System.ComponentModel, System.Diagnostics, System.Drawing, System.Globalization, System.IO, System.Net, System.Reflection, System.Runtime, System.Security, System.Text, System.Threading, etc).</li> <li>ASP.NET (System.Web, System.Web.Extensions)</li> <li>Windows Forms (System.Windows.Forms)</li> <li>Windows Presentation Foundation (System.Windows)</li> <li>ADO.NET and XML (System.Data and System.Xml)</li> </ul> </blockquote> <p>However, Microsoft has lots of legal and business concerns about exposing their code and accepting code from non-Microsoft sources.</p> http://stackoverflow.com/questions/1643443/sql-server-2005-get-login-name-from-user-name/1643545#1643545 3 Answer by bdukes for SQL Server 2005 Get Login name from User name bdukes 2009-10-29T12:59:43Z 2009-10-29T12:59:43Z <p>Using the <a href="http://msdn.microsoft.com/en-us/library/ms178542.aspx" rel="nofollow">Security Catalog Views</a>, you can get database and server principal information, like so:</p> <pre><code>USE [database_name] SELECT sp.name AS login_name FROM sys.server_principals sp JOIN sys.database_principals dp ON (sp.sid = dp.sid) WHERE dp.name = 'user_name' </code></pre> <p>I can't find a view that will give you all users, regardless of database, so this needs to be run within the context of the database of the login.</p> http://stackoverflow.com/questions/1639039/how-to-get-a-previous-version-of-a-file/1639306#1639306 1 Answer by bdukes for How to get a previous version of a file bdukes 2009-10-28T18:47:35Z 2009-10-28T18:47:35Z <p>Ah, it sounds like you want to rollback (that is, remove some checkins from TFS' history). There is not a built-in way to do this with TFS. However, you can use the <a href="http://msdn.microsoft.com/en-us/teamsystem/bb980963.aspx" rel="nofollow">TFS Power Tools</a> to accomplish this (there is a <code>tfpt rollback</code> command).</p> <p>In practice, the <code>rollback</code> command just does what you're trying to do. To do it manually, get the version that you want (without checking out the file). Save that somewhere else, then check the file out (which will perform a "get latest" command). Then overwrite that version with the version that you saved elsewhere.</p> <p>Alternatively, there's a setting in the TFS settings to "Get latest version of item on check out," which may be the cause of all of your problems. It's located in Tools->Options, under Source Control->Visual Studio Team Foundation Server. If that's checked for you, try unchecking it and seeing if it'll let you do what you're trying.</p> http://stackoverflow.com/questions/1639189/vb-net-can-you-split-a-string-by-a-string/1639271#1639271 3 Answer by bdukes for vb.net: can you split a string by a string bdukes 2009-10-28T18:40:42Z 2009-10-28T18:40:42Z <p><a href="http://stackoverflow.com/questions/1639189/vb-net-can-you-split-a-string-by-a-string/1639216#1639216">@Matthew Jones</a>' answer in VB.NET</p> <pre><code>Dim delim as String() = New String(0) { "&lt;beginning of record&gt;" } split = temp_string.Split(delim, StringSplitOptions.None) </code></pre> http://stackoverflow.com/questions/1638972/is-there-a-very-lightweight-ide-for-net/1639131#1639131 5 Answer by bdukes for Is there a *very* lightweight IDE for .net? bdukes 2009-10-28T18:20:42Z 2009-10-28T18:26:44Z <p>Personally, I've run into a lot of friction using Snippet Compiler. </p> <p>So, I tend to use <a href="http://www.linqpad.net/" rel="nofollow">LINQPad</a> to test snippets. It's pretty convenient for testing individual lines of code, or most "full" program snippets, as well as evaluating LINQ statements against a database.</p> <p>It features a really awesome view of results, so that complex types are displayed in an easy-to-read structure.</p> <p><a href="http://www.linqpad.net/CodeSnippetIDE.aspx" rel="nofollow">From their site</a>:</p> <blockquote> <ul> <li>LINQPad reports the execution time in the status bar, so you won't have to manually create a Stopwatch class for performance testing.</li> <li>Want to test a variation of your snippet? Ctrl+Shift+C instantly clones your snippet so you can run another version side-by-side.</li> <li>You can return to saved queries in single click, thanks to the My Queries treeview. Some people are using LINQPad as a scripting tool!</li> </ul> </blockquote> <p>The only real snag that run into with LINQPad is in the "full program" mode (where you're defining methods, instead of just calling individual statements) you can't create extension methods, because everything happens inside of a the context of a hidden type (and extension methods can't be defined in a nested type).</p> http://stackoverflow.com/questions/1639039/how-to-get-a-previous-version-of-a-file/1639052#1639052 0 Answer by bdukes for How to get a previous version of a file bdukes 2009-10-28T18:08:53Z 2009-10-28T18:08:53Z <p>On the merge screen, you should be able to choose to overwrite your local copy with the server version. That sounds like what you want to do.</p> <p>However, the merge screen should only show up if you have pending changes. If you undo your pending changes on the file, the Get Specific Version command shouldn't cause a merge.</p> http://stackoverflow.com/questions/1637295/should-i-implement-a-constructor-or-use-the-default-one-for-data-classes/1637327#1637327 0 Answer by bdukes for Should I implement a constructor or use the default one for data classes? bdukes 2009-10-28T13:43:49Z 2009-10-28T13:43:49Z <p>Well, in the case of a complex number, I would argue that it should be an immutable <code>struct</code>, rather than a <code>class</code> with setters. Therefore, it will need to initialize its values in the constructor.</p> <p>If, however, you're talking about representing something that should be a mutable <code>class</code>, then it doesn't really matter as much. My preference would be to create a constructor, so that it's easily discoverable which fields need to be set to initialize the object.</p> http://stackoverflow.com/questions/1631496/adding-asp-or-dynamic-content-into-the-fck-textbox/1632264#1632264 1 Answer by bdukes for Adding ASP or Dynamic Content into the FCK textbox bdukes 2009-10-27T17:03:01Z 2009-10-27T17:03:01Z <p>The FCK Editor only deals with HTML content. You won't be able to use it to access server variables, unless you have a custom module designed to parse and evaluate the content.</p> http://stackoverflow.com/questions/1616190/quotes-inside-validationexpression-for-regularexpressionvalidator/1616250#1616250 0 Answer by bdukes for Quotes inside ValidationExpression for RegularExpressionValidator bdukes 2009-10-23T22:25:50Z 2009-10-23T22:25:50Z <p>I think setting that value from the codebehind (where you'll have more control over string formatting/escaping) is going to be your best bet.</p> http://stackoverflow.com/questions/1614680/setting-the-assembly-name-for-a-web-application-project/1614710#1614710 2 Answer by bdukes for Setting the assembly name for a web application project bdukes 2009-10-23T16:59:17Z 2009-10-23T16:59:17Z <p>Right click on the project in the Solution Explorer and select Properties. On the Application tab, there's an Assembly Name text box, where you can set that.</p> http://stackoverflow.com/questions/702907/what-are-some-good-css-and-js-minimizers-for-production-code/702927#702927 11 Answer by bdukes for What are some good css and js minimizers for production code? bdukes 2009-03-31T20:33:22Z 2009-10-22T14:24:59Z <p><a href="http://developer.yahoo.com/yui/compressor/" rel="nofollow">YUI Compressor</a> does both JavaScript and CSS. I'm not sure if you can send it a batch of files.</p> <p>You <em>can</em> batch process at <a href="http://yui.2clics.net/" rel="nofollow">YUI Compressor Online (yui.2clics.net)</a>, though that version only accepts JavaScript. Another <a href="http://www.refresh-sf.com/yui/" rel="nofollow">Online YUI Compressor (refresh-sf.com)</a> accepts CSS, too, but doesn't batch.</p> <p>In terms of comparing the various minifiers, see this entry from the <a href="http://docs.jquery.com/Frequently%5FAsked%5FQuestions#How%5Fdo%5FI%5Fcompress%5Fmy%5Fcode.3F" rel="nofollow">jQuery FAQ</a>:</p> <blockquote> <h2>How do I compress my code?</h2> <p>Generally the best way to do it is to use the <a href="http://developer.yahoo.com/yui/compressor/" rel="nofollow">YUI compressor</a>.</p> <p>An alternative is to use <a href="http://www.crockford.com/javascript/jsmin.html" rel="nofollow">Douglas Crockford's JSMin</a>. This doesn't compress JavaScript code as small, but generally how you write your code matters less. jQuery also provides a <a href="http://code.jquery.com/jquery-latest.min.js" rel="nofollow">pre-minified version of jQuery</a> for your convenience.</p> <p>Packing javascript using <a href="http://dean.edwards.name/packer/" rel="nofollow">Dean Edwards' Packer</a> (specifically using the base64 encode) is not recommended, as the client-side decoding has significant overhead that outweighs the file-size benefits.</p> <p>If compressing your JavaScript breaks it, try running the code through <a href="http://jslint.com/" rel="nofollow">JSLint</a>. This will detect minor errors that can cause packed JavaScript to fail where the unpacked version works fine. </p> </blockquote> http://stackoverflow.com/questions/350292/how-do-i-get-jquery-to-select-elements-with-a-period-in-their-id/350300#350300 20 Answer by bdukes for How do I get jQuery to select elements with a . (period) in their ID? bdukes 2008-12-08T17:53:45Z 2009-10-22T13:52:55Z <p>From <a href="http://groups.google.com/group/jquery-en/browse%5Fthread/thread/ba072168939b245a?pli=1" rel="nofollow">Google Groups</a>:</p> <blockquote> <p>Use two backslashes before each special character.</p> <p>A backslash in a jQuery selector escapes the next character. But you need two of them because backslash is also the escape character for JavaScript strings. The first backslash escapes the second one, giving you one actual backslash in your string - which then escapes the next character for jQuery. </p> </blockquote> <p>So, I guess you're looking at</p> <pre><code>$(function() { $.getJSON("/Location/GetCountryList", null, function(data) { $("#Address\\.Country").fillSelect(data); }); $("#Address\\.Country").change(function() { $.getJSON("/Location/GetRegionsForCountry", { country: $(this).val() }, function(data) { $("#Address\\.State").fillSelect(data); }); }); }); </code></pre> <p>Also check out <a href="http://docs.jquery.com/Frequently%5FAsked%5FQuestions#How%5Fdo%5FI%5Fselect%5Fan%5Felement%5Fby%5Fan%5FID%5Fthat%5Fhas%5Fcharacters%5Fused%5Fin%5FCSS%5Fnotation.3F" rel="nofollow">How do I select an element by an ID that has characters used in CSS notation?</a> on the jQuery FAQ.</p> http://stackoverflow.com/questions/1566809/how-do-i-rewrite-committer-names-in-a-git-repository/1566833#1566833 6 Answer by bdukes for How do I rewrite committer names in a git repository? bdukes 2009-10-14T14:53:43Z 2009-10-14T14:53:43Z <p><a href="http://progit.org/book/" rel="nofollow">The ProGit book</a> has <a href="http://progit.org/book/ch6-4.html" rel="nofollow">an example of doing this</a> that should probably work for you.</p> <pre><code>$ git filter-branch --commit-filter ' if [ "$GIT_AUTHOR_EMAIL" = "schacon@localhost" ]; then GIT_AUTHOR_NAME="Scott Chacon"; GIT_AUTHOR_EMAIL="schacon@example.com"; git commit-tree "$@"; else git commit-tree "$@"; fi' HEAD </code></pre> http://stackoverflow.com/questions/30947/visual-studio-08-spell-check-addin/30968#30968 3 Answer by bdukes for Visual Studio 08 Spell Check Addin? bdukes 2008-08-27T19:25:54Z 2009-10-14T13:51:48Z <p>The <a href="http://blogs.msdn.com/webdevtools/archive/2008/11/29/spell-checker-update-2-2-full-support-for-vs-2008-sp1-simpler-setup-and-a-few-bug-fixes.aspx" rel="nofollow">plugin from Microsoft's Mikhail Arkhipov</a> does HTML and Comments, I don't believe it does C# strings, though. I use the <a href="http://www.agentsmithplugin.com/" rel="nofollow">Agent Smith</a> plugin for <a href="http://www.jetbrains.com/resharper/" rel="nofollow">ReSharper</a> for that.</p> http://stackoverflow.com/questions/1555983/converting-uk-times-both-bst-and-gmt-represented-as-strings-to-utc-in-c/1556035#1556035 0 Answer by bdukes for Converting UK times (both BST and GMT) represented as strings to UTC (in C#) bdukes 2009-10-12T18:02:33Z 2009-10-12T20:13:53Z <p>Try using the <a href="http://msdn.microsoft.com/en-us/library/bb396378.aspx" rel="nofollow"><code>GetUtcOffset()</code></a> method on your <code>TimeZoneInfo</code> instance, which takes "adjustment rules" into consideration.</p> <p>Using this should work basically the same as your original example, but you'll use that method instead of the <code>BaseUtcOffset</code> property.</p> <pre><code>DateTime ukTime = // Parse the strings in a DateTime value. TimeZoneInfo timeZoneInformation = TimeZoneInfo.FindSystemTimeZoneById("GMT Standard Time"); DateTimeOffset utcTime = new DateTimeOffset(ukTime, timeZoneInformation.GetUtcOffset(ukTime)); </code></pre> http://stackoverflow.com/questions/248067/in-dotnetnuke-how-can-i-get-a-moduleinfo-object-if-i-just-have-a-moduleid-and-n 0 In DotNetNuke, how can I get a ModuleInfo object if I just have a ModuleId (and not a TabId) bdukes 2008-10-29T19:18:31Z 2009-10-09T20:14:41Z <p>The only method provided by the DNN framework to get a module by ID also required a tab ID. What can I do if I don't <em>have</em> a tab ID?</p> http://stackoverflow.com/questions/44795/how-can-i-determine-whether-a-given-date-is-in-daylight-saving-time-for-a-given-t 2 How can I determine whether a given date is in Daylight Saving Time for a given timezone in .NET 2.0? bdukes 2008-09-04T21:11:43Z 2009-10-09T20:14:12Z <p>I'm on .NET 2.0, running under Medium Trust (so <a href="http://msdn.microsoft.com/en-us/library/system.timezoneinfo.aspx" rel="nofollow">TimeZoneInfo</a> and the Registry are not allowed options). I'm asking the user for two dates and a time zone, and would really love to be able to automatically determine whether I need to adjust the time zone for DST. </p> <p>This probably isn't even a valid scenario unless I have some <em>very</em> robust support, a la <a href="http://msdn.microsoft.com/en-us/library/system.timezoneinfo.aspx" rel="nofollow">TimeZoneInfo</a>, to differentiate between all of the different varieties of Time Zones in the first place.</p> http://stackoverflow.com/questions/1520886/how-to-handle-paging-iqueryable-with-linq-to-entities-problem-with-orderby/1520912#1520912 0 Answer by bdukes for How to handle paging IQueryable with Linq To Entities? (problem with OrderBy) bdukes 2009-10-05T15:56:51Z 2009-10-05T15:56:51Z <p>I think your best bet is going to be ensuring that your queries have an order <em>before</em> passing them to the <code>PaginatedList</code>.</p> http://stackoverflow.com/questions/1510315/dotnetnuke-run-as-script-sql-option/1511200#1511200 3 Answer by bdukes for DotNetNuke 'Run As Script' sql option bdukes 2009-10-02T18:46:35Z 2009-10-02T18:46:35Z <p>When "Run as Script" is not checked, you can only provide a single SQL statement. The results of that query will be displayed in a grid.</p> <p>When "Run as Script" is checked, you can provide multiple SQL statements, separated by the <code>GO</code> keyword. In this mode, no results will be displayed, just a message that the query completed successfully (or error messages if it didn't). This is the same mode that is used when installing an extension.</p> <p>Note that the statements are <em>completely</em> separated by the <code>GO</code> keyword, so you cannot have constructs (such as a transaction) that wrap a <code>GO</code> statement, since the beginning and end of the construct will be in completely separate sessions.</p> http://stackoverflow.com/questions/1504064/resharper-cleanup-code-vs-var-keyword/1504242#1504242 1 Answer by bdukes for resharper "cleanup code" vs. 'var' keyword bdukes 2009-10-01T14:18:47Z 2009-10-01T21:27:38Z <p>There's a setting under the Code Cleanup section that specifies what Code Cleanup should do with <code>var</code> declarations.</p> <p>In the ReSharper Menu, select Options. At the bottom of the tree view, select Code Cleanup (in the Tools section). Select a Code Cleanup preset on the right, and then look at the <em>Use 'var' in declaration</em> setting. You probably want the <em>Replace direction</em> setting set to <em>Do not change</em>.</p> http://stackoverflow.com/questions/1492647/leading-dotnetnuke-news-and-forum-modules/1493758#1493758 1 Answer by bdukes for Leading DotNetNuke news and forum modules? bdukes 2009-09-29T16:55:10Z 2009-09-29T16:55:10Z <p>"News module" is pretty open, but the best simple news module is probably <a href="http://www.ventrian.com/Products/Modules/NewsArticles.aspx" rel="nofollow">Ventrian's News Articles</a> module. My company, Engage Software, makes another article management system, <a href="http://www.engagesoftware.com/Products/Modules/Engage%5FPublish.aspx" rel="nofollow">Engage: Publish</a>, that is more full featured in some areas.</p> <p><a href="http://www.activemodules.com/products/activeforums.aspx" rel="nofollow">Active Forums</a> is generally considered the cream of the crop for DNN forums.</p> <p>DNN module development takes a little getting used to, so that you're familiar with your options and what DNN offers, but it's fairly simple once you know what you're doing. Engage offers <a href="http://www.engagesoftware.com/Training.aspx" rel="nofollow">a number of training options</a> if you end up deciding to go that route.</p> <p>I think your best bet is to evaluate the existing modules, take them for a spin, and see if you can get them to meet your needs before you go creating something on your own. All of the modules I've mentioned will be able to support you if you run into any issues or need any help figuring out if they have a way to meet your needs.</p> http://stackoverflow.com/questions/1661913/typeofsystem-enum-isclass-false/1661969#1661969 Comment by bdukes on typeof(System.Enum).IsClass == false bdukes 2009-11-24T20:31:51Z 2009-11-24T20:31:51Z Same issue on .Net 3.5 http://stackoverflow.com/questions/1792586/getting-the-type-of-a-type-in-c-reflection/1792623#1792623 Comment by bdukes on Getting the type of a "Type" in C# reflection bdukes 2009-11-24T20:15:04Z 2009-11-24T20:15:04Z OP already has an instance of <code>Type</code>. http://stackoverflow.com/questions/1792101/generic-method-with-actiont-parameter/1792140#1792140 Comment by bdukes on Generic method with Action<T> parameter bdukes 2009-11-24T19:07:54Z 2009-11-24T19:07:54Z OP wants to take an action on an <code>IAnimal</code>, not take in an <code>IAnimal</code>. http://stackoverflow.com/questions/242534/c-naming-convention-for-constants/242549#242549 Comment by bdukes on C# naming convention for constants? bdukes 2009-11-23T21:36:16Z 2009-11-23T21:36:16Z Actually, StyleCop is &quot;not a Microsoft product,&quot; but &quot;a tool developed by a very passionate developer at Microsoft (on evenings and weekends).&quot; (See <a href="http://blogs.msdn.com/sourceanalysis/archive/2008/07/20/clearing-up-confusion.aspx" rel="nofollow">blogs.msdn.com/sourceanalysis/archive/&hellip;</a> and <a href="http://blogs.msdn.com/bharry/archive/2008/07/19/clearing-up-confusion.aspx" rel="nofollow">blogs.msdn.com/bharry/archive/&hellip;</a>) for details.) That being said, the Microsoft's framework naming conventions use Pascal casing for constants, so the tool is just enforcing the standard that Microsoft <i>does</i> publish and endorse. http://stackoverflow.com/questions/1785486/jquery-selector-not-working-right/1785509#1785509 Comment by bdukes on jQuery Selector not working right... bdukes 2009-11-23T19:52:48Z 2009-11-23T19:52:48Z Good call...... http://stackoverflow.com/questions/1785274/what-happened-to-the-jquery-contains-traversal-method Comment by bdukes on What happened to the jQuery "contains" traversal method? bdukes 2009-11-23T19:26:48Z 2009-11-23T19:26:48Z The <code>contains</code> page is still available directly by your URL, but isn't listed in the Traversing overview page (<a href="http://docs.jquery.com/Traversing" rel="nofollow">docs.jquery.com/Traversing</a>). http://stackoverflow.com/questions/1772144/vncviewer-size-is-too-small Comment by bdukes on Vncviewer Size is too Small bdukes 2009-11-20T17:46:17Z 2009-11-20T17:46:17Z This question is not programming related and, so, belongs on superuser.com http://stackoverflow.com/questions/1088053/vb-net-string-manipulation-or/1088175#1088175 Comment by bdukes on Vb.Net String Manipulation & or + bdukes 2009-11-20T15:15:59Z 2009-11-20T15:15:59Z Just ran into an issue using <code>+</code> instead of <code>&amp;</code>. Did something like this: <code>&lt;%# ResolveUrl(&quot;~/page.aspx?id=&quot; + Eval(&quot;Id&quot;)) %&gt;</code>. Since ID is an <code>Integer</code>, VB tries to convert the left side (the URL) to a numeric type and throws an exception when it can't. http://stackoverflow.com/questions/1744528/any-native-zip-packaging-for-net3-5/1744607#1744607 Comment by bdukes on Any native ZIP/Packaging for .NET3.5 bdukes 2009-11-16T20:43:19Z 2009-11-16T20:43:19Z OP is only interested in built-in libraries http://stackoverflow.com/questions/1742422/jquery-validation-changing-required-attribute-based-on-other-fields/1742646#1742646 Comment by bdukes on jQuery Validation - Changing "Required" Attribute based on other fields bdukes 2009-11-16T19:07:47Z 2009-11-16T19:07:47Z This example really just makes the email in the first section required if one of the other field in the first section has a value. You'll need to wire up similar rules for the other fields before the <code>blur</code> event handler will work properly... http://stackoverflow.com/questions/33409/how-do-i-check-if-a-sql-server-text-column-is-empty/1405862#1405862 Comment by bdukes on How do I check if a SQL Server text column is empty? bdukes 2009-11-02T21:41:50Z 2009-11-02T21:41:50Z Comparing against <code>''</code> gives the error message in the original question... http://stackoverflow.com/questions/1638972/is-there-a-very-lightweight-ide-for-net/1639004#1639004 Comment by bdukes on Is there a *very* lightweight IDE for .net? bdukes 2009-10-28T22:07:18Z 2009-10-28T22:07:18Z See my answer below, I've found a lot less friction using LINQPad over Snippet Compiler. http://stackoverflow.com/questions/1639189/vb-net-can-you-split-a-string-by-a-string/1639232#1639232 Comment by bdukes on vb.net: can you split a string by a string bdukes 2009-10-28T22:05:41Z 2009-10-28T22:05:41Z If you're going to use <code>Regex.Split</code>, use <code>Regex.Escape</code> on what you'll be matching against. http://stackoverflow.com/questions/1614662/what-is-the-javascript-method-collectgarbage-when-and-why-should-it-be-used/1614708#1614708 Comment by bdukes on What is the Javascript method CollectGarbage()? When and why should it be used? bdukes 2009-10-23T17:00:54Z 2009-10-23T17:00:54Z In addition, the documentation notes that it &quot;is not intended to be used directly from your code.&quot; So to answer the original question, don't use it. http://stackoverflow.com/questions/1596680/vs2008-not-honoring-my-documents-path-setting/1596925#1596925 Comment by bdukes on vs2008: not honoring 'my documents' path setting bdukes 2009-10-20T20:01:38Z 2009-10-20T20:01:38Z This would probably be more appropriate as a comment on the question, since it doesn't provide any answer.