User Craig - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T04:21:12Zhttp://stackoverflow.com/feeds/user/2047http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1246546/best-practices-for-c-gui-naming-conventions/1481892#14818922Answer by Craig for Best practices for C# GUI naming conventions?Craig2009-09-26T18:51:27Z2009-09-26T18:51:27Z<p>This Hungarian/VB6-naming insanity needs to stop.</p>
<p>If Microsoft really wanted you to name your controls based on their type then why doesn't Visual Studio automatically tack on the 'txt' or 'btn' when you add the control to your web/win Form?</p>
http://stackoverflow.com/questions/1464663/how-to-define-a-good-convention-for-css/1481867#14818670Answer by Craig for How to define a good convention for css?Craig2009-09-26T18:40:03Z2009-09-26T18:40:03Z<p>I prefer the <code>all-lowercase-hyphen-separated</code> approach.</p>
<p>This is consistent with how <a href="http://www.w3schools.com/CSS/CSS%5Freference.asp" rel="nofollow">CSS properties</a> are named: <code>font-size, border-top, vertical-align</code>, etc.</p>
http://stackoverflow.com/questions/52698/blackberry-development-using-intellij-idea-7-05BlackBerry development using IntelliJ IDEA 7.0?Craig2008-09-09T19:29:06Z2009-09-14T06:50:08Z
<p>I know RIM has their own IDE (<a href="http://na.blackberry.com/eng/developers/downloads/jde.jsp" rel="nofollow">BlackBerry JDE</a>) for building BlackBerry apps, but does anyone know how to configure <a href="http://www.jetbrains.com/idea/index.html" rel="nofollow">IntelliJ IDEA</a> to build/debug BlackBerry apps?</p>
http://stackoverflow.com/questions/916794/what-is-the-sleakest-way-to-proccess-multiple-files/916837#9168373Answer by Craig for what is the sleakest way to proccess multiple filesCraig2009-05-27T16:49:46Z2009-05-27T16:49:46Z<p>Instead of dragging files to an ".exe" perhaps you could create a "hot folder" to drop the files into. You'd need to write your application to monitor this folder (using something like <a href="http://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher.aspx" rel="nofollow">FileSystemWatcher</a>) and process the incoming files.</p>
http://stackoverflow.com/questions/39728/how-to-upgrade-tfs-2005-to-tfs-20082How to upgrade TFS 2005 to TFS 2008?Craig2008-09-02T15:00:15Z2009-03-23T09:19:19Z
<p>What is the best way to go about upgrading TFS 2005 to 2008? Also, what about the Team Build scripts ("Build Types"), are those compatible with Team Build 2008 or do they need converted/migrated somehow?</p>
http://stackoverflow.com/questions/52730/perform-token-replacements-using-vs-post-build-event-command1Perform token replacements using VS post-build event command?Craig2008-09-09T19:45:03Z2009-03-22T21:57:42Z
<p>I would like to "post-process" my app.config file and perform some token replacements after the project builds.</p>
<p>Is there an <em>easy</em> way to do this using a <a href="http://msdn.microsoft.com/en-us/library/42x5kfw4(VS.80).aspx" rel="nofollow">VS post-build event</a> command?</p>
<p><em>(Yeah I know I could probably use NAnt or something, looking for something simple.)</em></p>
http://stackoverflow.com/questions/667012/replace-a-gridview-row-while-rendering/667031#6670310Answer by Craig for Replace a gridview row while renderingCraig2009-03-20T16:56:57Z2009-03-20T16:56:57Z<p>Yes, the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.rowcreated.aspx" rel="nofollow">RowCreated</a> event.</p>
http://stackoverflow.com/questions/566510/c-casting-types-dynamically/566528#5665281Answer by Craig for C#: Casting types dynamicallyCraig2009-02-19T18:21:20Z2009-02-19T18:21:20Z<p>Instead of trying to cast, perhaps you could try setting the properties using reflection.</p>
http://stackoverflow.com/questions/520642/conflict-between-gac-and-bin-dll/520668#5206681Answer by Craig for Conflict between GAC and Bin dllCraig2009-02-06T15:17:02Z2009-02-06T15:17:02Z<p>I'd try stopping IIS, then deleting everything in your 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files' folder then start IIS again.</p>
http://stackoverflow.com/questions/509723/iis-permissions-for-saving-word-documents/520600#5206000Answer by Craig for IIS Permissions for Saving Word DocumentsCraig2009-02-06T15:02:47Z2009-02-06T15:02:47Z<p>I'd try running <a href="http://www.fiddlertool.com/Fiddler2/version.asp" rel="nofollow">Fiddler</a> on the client while trying to save the document to get a sense of what's really going on. I wonder if maybe it's trying to do an HTTP PUT (as opposed to a POST).</p>
http://stackoverflow.com/questions/518762/jquery-clickfn-vs-bindclick-fn/518788#5187880Answer by Craig for jQuery: $().click(fn) vs. $().bind('click',fn);Craig2009-02-06T01:37:37Z2009-02-06T01:37:37Z<p>readability</p>
http://stackoverflow.com/questions/484464/array-join-in-net/484477#4844778Answer by Craig for Array.Join in .Net?Craig2009-01-27T17:56:13Z2009-01-27T17:56:13Z<p>If you're working with strings, then <a href="http://msdn.microsoft.com/en-us/library/57a79xd0.aspx" rel="nofollow">String.Join</a> is probably what you're looking for.</p>
http://stackoverflow.com/questions/484367/do-you-print-hard-copies-of-requirements-design-documents-and-code/484418#4844181Answer by Craig for Do you print hard copies of requirements, design documents and code?Craig2009-01-27T17:44:36Z2009-01-27T17:44:36Z<p>What's a printer?</p>
http://stackoverflow.com/questions/463155/how-does-the-ternary-operator-work/463203#4632032Answer by Craig for How does the ternary operator work?Craig2009-01-20T21:30:04Z2009-01-20T21:30:04Z<p>As quoted from the <a href="http://msdn.microsoft.com/en-us/library/ty67wk28(VS.80).aspx" rel="nofollow">?: Operator MSDN page</a>, "the conditional operator (?:) returns one of two values depending on the value of a Boolean expression."</p>
<p>So you can use the ternary operator to return more than just booleans:</p>
<pre><code> string result = (value > 100 ) ? "value is big" : "value is small";
</code></pre>
http://stackoverflow.com/questions/16998/reading-chunked-response-with-httpwebresponse4Reading "chunked" response with HttpWebResponseCraig2008-08-19T21:28:53Z2008-12-09T11:26:48Z
<p>I'm having trouble reading a "chunked" response when using a StreamReader to read the stream returned by GetResponseStream() of a HttpWebResponse:</p>
<pre><code>// response is an HttpWebResponse
StreamReader reader = new StreamReader(response.GetResponseStream());
string output = reader.ReadToEnd(); // throws exception...
</code></pre>
<p>When the reader.ReadToEnd() method is called I'm getting the following System.IO.IOException: <strong>Unable to read data from the transport connection: The connection was closed.</strong></p>
<p>The above code works just fine when server returns a "non-chunked" response.</p>
<p>The only way I've been able to get it to work is to use HTTP/1.0 for the initial request (instead of HTTP/1.1, the default) but this seems like a lame work-around.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/236851/error-tracking-in-live-production-web-applications/237632#2376323Answer by Craig for Error Tracking in live/production web applicationsCraig2008-10-26T05:49:30Z2008-10-26T05:49:30Z<p>I think <a href="http://code.google.com/p/elmah/" rel="nofollow">ELMAH</a> may be what you're looking for.</p>
http://stackoverflow.com/questions/227731/int128-in-net/227759#2277590Answer by Craig for Int128 in .Net?Craig2008-10-22T22:28:16Z2008-10-22T22:28:16Z<p>I believe Mono has a BigInteger implementation that you should be able to track down the source for.</p>
http://stackoverflow.com/questions/129508/when-did-you-know-it-was-time-to-leave-your-job/129540#1295406Answer by Craig for When did you know it was time to leave your job?Craig2008-09-24T20:05:32Z2008-09-24T20:05:32Z<p>When you feel like you've stopped learning new things.</p>
http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/129373#12937327Answer by Craig for Hidden Features of Visual Studio (2005-2008)?Craig2008-09-24T19:36:02Z2008-09-24T19:55:36Z<p>Click an identifier (class name, variable, etc) then hit <strong>F12</strong> for "Go To Definition". I'm always amazed how maybe people I watch code that use the slower right-click -> "Go To Definition" method.</p>
<p><strong>EDIT:</strong> Then you can use Ctrl+- [control minus] to jump back to where you were.</p>
http://stackoverflow.com/questions/96279/visual-studio-detecting-unneeded-assemblies/96346#963462Answer by Craig for Visual Studio: Detecting unneeded AssembliesCraig2008-09-18T20:04:50Z2008-09-18T20:04:50Z<p>If you have ReSharper installed, then from within the Solution Explorer you can right-click on a reference and click <strong>Find Dependent Code</strong>. If it comes back with a dialog of results then you're using that reference/assembly. If you get the message "Code dependent on module <em>module name</em> not found." Then you should be OK to remove that reference/assembly because it's not being used.</p>
http://stackoverflow.com/questions/73748/dropdownlist-autoposback-after-client-confirmation/74444#744440Answer by Craig for DropdownList autoposback after client confirmationCraig2008-09-16T16:50:59Z2008-09-16T16:50:59Z<p>Overriding the onchange attribute will not work if you have have AutoPostBack set to true because ASP.NET will always append the following to the end of your onchange script:</p>
<pre><code>;setTimeout('__doPostBack(\'YourDropDown\',\'\')', 0)
</code></pre>
<p>If you set AutoPostBack to false, then overriding onchange with a "confirm and __doPostBack" type script (see above, err.. below) will work but you may have to manually create the __doPostBack function.</p>
http://stackoverflow.com/questions/73748/dropdownlist-autoposback-after-client-confirmation/74027#740270Answer by Craig for DropdownList autoposback after client confirmationCraig2008-09-16T16:08:19Z2008-09-16T16:33:22Z<p>You can utilize the the CustomValidator control to "validate" dropdown by calling a javascript function in which you do the confirm():</p>
<pre><code> <asp:DropDownList ID="TestDropDown" runat="server" AutoPostBack="true" CausesValidation="true"
ValidationGroup="Group1"
OnSelectedIndexChanged="TestDropDown_SelectedIndexChanged">
<asp:ListItem Value="1" Text="One" />
<asp:ListItem Value="2" Text="Two" />
</asp:DropDownList>
<script type="text/javascript">
function ConfirmDropDownValueChange(source, arguments) {
arguments.IsValid = confirm("Are you sure?");
}
</script>
<asp:CustomValidator ID="ConfirmDropDownValidator" runat="server"
ClientValidationFunction="ConfirmDropDownValueChange" Display="Dynamic" ValidationGroup="Group1" />
</code></pre>
http://stackoverflow.com/questions/52753/should-i-derive-custom-exceptions-from-exception-or-applicationexception-in-net/52782#527821Answer by Craig for Should I derive custom exceptions from Exception or ApplicationException in .NET?Craig2008-09-09T20:05:27Z2008-09-09T20:10:28Z<p>Yeah, Konrad has it right.</p>
<p>On a related note: another thing thought useful (or "best practice") but really isn't is <a href="http://blogs.msdn.com/brada/archive/2003/04/09/49935.aspx" rel="nofollow">implementing ICloneable</a>.</p>
http://stackoverflow.com/questions/50089/how-do-you-backup-iiss-metabase-in-c/50161#501612Answer by Craig for How do you backup IIS's metabase in C#?Craig2008-09-08T17:03:50Z2008-09-09T03:17:40Z<p>You'll need to use ADSI objects. The <a href="http://msdn.microsoft.com/en-us/library/ms525753.aspx" rel="nofollow">IIsComputer.Backup</a> method is what you want.</p>
<p>As far as how to access ADSI objects from C#, check out this <a href="http://support.microsoft.com/kb/315716" rel="nofollow">MSDN page</a>.</p>
<p><strong>EDIT:</strong> Here's a <a href="http://www.vbforums.com/archive/index.php/t-470587.html" rel="nofollow">sample implementation in C#</a>.</p>
http://stackoverflow.com/questions/50330/would-you-override-scriptcontrol-or-basevalidator-for-an-async-asp-net-validator/50517#505172Answer by Craig for Would you override ScriptControl or BaseValidator for an async ASP.NET validator control?Craig2008-09-08T19:52:08Z2008-09-08T19:52:08Z<p>You should be able to do both if you implement the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.iscriptcontrol.aspx" rel="nofollow">IScriptControl</a> interface while also deriving from BaseValidator:</p>
<pre><code>public class YourControl : IScriptControl, BaseValidator
</code></pre>
<p>To implement the IScriptControl interface means your control will also have to have the GetScriptReferences and GetScriptDescriptors methods.</p>
http://stackoverflow.com/questions/42396/asp-net-why-is-my-buttons-click-command-events-not-binding-firing-in-a-repeater/42427#424271Answer by Craig for ASP.Net: why is my button's click/command events not binding/firing in a repeater?Craig2008-09-03T19:51:47Z2008-09-03T19:51:47Z<p>You need to handle the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.repeater.itemcommand.aspx" rel="nofollow">ItemCommand event</a> on your Repeater. Here's <a href="http://www.developer.com/net/asp/article.php/3609466" rel="nofollow">an example</a>.</p>
<p>Then, your button clicks will be handled by the ListOfEmails_ItemCommand method. I don't think wiring up the Click or Command event (of the button) in ItemDataBound will work.</p>
http://stackoverflow.com/questions/4689/recommended-fonts-for-programming/42401#424010Answer by Craig for Recommended Fonts for Programming?Craig2008-09-03T19:44:19Z2008-09-03T19:44:19Z<p>Consolas unless I'm runing over a slow RDP connection with font smoothing turned off, then Lucida Console.</p>
http://stackoverflow.com/questions/42366/what-does-the-exe-do-in-the-visual-studio-setup-project-output/42382#423820Answer by Craig for What does the EXE do in the Visual Studio setup project outputCraig2008-09-03T19:37:35Z2008-09-03T19:37:35Z<p>I think the EXE is just a wrapper/bootstrapper for the MSI in case you don't have Window Installer. If you have the requisite Windows Installer version installed then the MSI should work fine on its own.</p>
http://stackoverflow.com/questions/7973/user-interface-design/42320#423200Answer by Craig for User Interface DesignCraig2008-09-03T19:05:22Z2008-09-03T19:05:22Z<p><a href="http://www.lukew.com" rel="nofollow">LukeW</a> has several articles, books, and examples on user interface design an usability issues.</p>
<p>I've especially found the <a href="http://www.lukew.com/resources/articles/web_forms.html" rel="nofollow">Web Application Form Design</a> article to be helpful.</p>
http://stackoverflow.com/questions/42246/subversion-partial-export/42300#423000Answer by Craig for Subversion Partial ExportCraig2008-09-03T18:54:43Z2008-09-03T18:54:43Z<p>You could try playing around with the <a href="http://svnbook.red-bean.com/en/1.1/re31.html" rel="nofollow">svnadmin dump</a> command that ships with the Subversion binaries. You can use this command to dump the whole repository to a file, just certain revision, or a range of revisions. Then use <a href="http://svnbook.red-bean.com/en/1.0/re36.html" rel="nofollow">svnadmin load</a> to load the <em>dump-file</em> into a new, clean repository.</p>
<p>Not a perfect solution since it works in terms of the repository and not individual files.</p>
http://stackoverflow.com/questions/1798820/ultra-simple-version-control/1798844#1798844Comment by Craig on Ultra simple version controlCraig2009-11-25T18:10:50Z2009-11-25T18:10:50ZYeah SharePoint is probably the best bet for people used to working with office documents.http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/423786#423786Comment by Craig on Worst UI You've Ever UsedCraig2009-11-23T19:27:47Z2009-11-23T19:27:47ZWhat, no "Reset" button?http://stackoverflow.com/questions/1579795/web-based-method-to-determine-if-an-iphone-is-connected-via-3g-or-wifiComment by Craig on Web based method to determine if an iPhone is connected via 3G or WifiCraig2009-10-16T19:05:23Z2009-10-16T19:05:23ZSeems like what you really need is a way to test their bandwidth, not necessarily whether they're on 3G or WiFi.http://stackoverflow.com/questions/1533744/how-to-upgrade-a-password-storage-scheme-change-hashing-algorithm/1533771#1533771Comment by Craig on How to upgrade a password storage scheme (change hashing-algorithm)Craig2009-10-07T19:50:14Z2009-10-07T19:50:14ZYou could also have the login process "upgrade" the password to the new hashing algorithm, assuming you have access to the cleartext password at that time.http://stackoverflow.com/questions/1495580/namespace-being-automatically-imported/1495602#1495602Comment by Craig on Namespace being automatically importedCraig2009-09-30T00:33:33Z2009-09-30T00:33:33ZIf it's an asp.net web application (as opposed to web site) then it definitely is in a namespace. You can right-click->properties on the web project to see.http://stackoverflow.com/questions/1246546/best-practices-for-c-gui-naming-conventions/1246594#1246594Comment by Craig on Best practices for C# GUI naming conventions?Craig2009-09-26T22:33:04Z2009-09-26T22:33:04ZThat MS support article only lists VB4/VB6 languages in the "Applies To" at the end. Maybe not the best reference for modern .NET development.http://stackoverflow.com/questions/1246546/best-practices-for-c-gui-naming-conventions/1481892#1481892Comment by Craig on Best practices for C# GUI naming conventions?Craig2009-09-26T22:29:43Z2009-09-26T22:29:43ZPersonally I name a textbox for what it's for: name, username, password, etc. Unless it collides with some class member, then add a suffix like: nameTextBox or nameInput.http://stackoverflow.com/questions/1246546/best-practices-for-c-gui-naming-conventions/1349294#1349294Comment by Craig on Best practices for C# GUI naming conventions?Craig2009-09-26T18:48:45Z2009-09-26T18:48:45Z+1 for linking Microsoft's .NET naming recommendations.http://stackoverflow.com/questions/1385651/resharper-problem-with-unit-testsComment by Craig on Resharper problem with unit testsCraig2009-09-21T13:54:00Z2009-09-21T13:54:00ZYeah I'm having this same problem with ReSharper 4.5.1274.1 in VS2005. Very annoying. Used to work fine with version 4.5.1231.7.http://stackoverflow.com/questions/1447317/how-to-diagnose-computer-hardware-without-bootingComment by Craig on How to diagnose computer hardware without booting?Craig2009-09-19T00:21:32Z2009-09-19T00:21:32ZThis should probably be on SuperUser.http://stackoverflow.com/questions/883004/where-can-i-find-a-dead-simple-explanation-of-mvc/883115#883115Comment by Craig on Where can I find a dead-simple explanation of MVC?Craig2009-05-19T14:31:33Z2009-05-19T14:31:33ZBest. MVC diagram. Ever.http://stackoverflow.com/questions/774359/setting-cls-compliance-for-a-net-assembly/774366#774366Comment by Craig on Setting CLS compliance for a .NET assemblyCraig2009-04-21T20:19:38Z2009-04-21T20:19:38ZGenerally you'd put this in your Properties/AssemblyInfo.cs file.http://stackoverflow.com/questions/398332/what-backup-strategy-do-you-use-for-your-code/398631#398631Comment by Craig on What backup strategy do you use for your code?Craig2008-12-29T21:12:17Z2008-12-29T21:12:17Z+1 for sync != backuphttp://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100511#100511Comment by Craig on Hidden Features of Visual Studio (2005-2008)?Craig2008-09-24T19:30:46Z2008-09-24T19:30:46ZNot sure about the difference but I've always used Ctrl+Alt.