User Craig - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T04:21:12Z http://stackoverflow.com/feeds/user/2047 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1246546/best-practices-for-c-gui-naming-conventions/1481892#1481892 2 Answer by Craig for Best practices for C# GUI naming conventions? Craig 2009-09-26T18:51:27Z 2009-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#1481867 0 Answer by Craig for How to define a good convention for css? Craig 2009-09-26T18:40:03Z 2009-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-0 5 BlackBerry development using IntelliJ IDEA 7.0? Craig 2008-09-09T19:29:06Z 2009-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#916837 3 Answer by Craig for what is the sleakest way to proccess multiple files Craig 2009-05-27T16:49:46Z 2009-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-2008 2 How to upgrade TFS 2005 to TFS 2008? Craig 2008-09-02T15:00:15Z 2009-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-command 1 Perform token replacements using VS post-build event command? Craig 2008-09-09T19:45:03Z 2009-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#667031 0 Answer by Craig for Replace a gridview row while rendering Craig 2009-03-20T16:56:57Z 2009-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#566528 1 Answer by Craig for C#: Casting types dynamically Craig 2009-02-19T18:21:20Z 2009-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#520668 1 Answer by Craig for Conflict between GAC and Bin dll Craig 2009-02-06T15:17:02Z 2009-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#520600 0 Answer by Craig for IIS Permissions for Saving Word Documents Craig 2009-02-06T15:02:47Z 2009-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#518788 0 Answer by Craig for jQuery: $().click(fn) vs. $().bind('click',fn); Craig 2009-02-06T01:37:37Z 2009-02-06T01:37:37Z <p>readability</p> http://stackoverflow.com/questions/484464/array-join-in-net/484477#484477 8 Answer by Craig for Array.Join in .Net? Craig 2009-01-27T17:56:13Z 2009-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#484418 1 Answer by Craig for Do you print hard copies of requirements, design documents and code? Craig 2009-01-27T17:44:36Z 2009-01-27T17:44:36Z <p>What's a printer?</p> http://stackoverflow.com/questions/463155/how-does-the-ternary-operator-work/463203#463203 2 Answer by Craig for How does the ternary operator work? Craig 2009-01-20T21:30:04Z 2009-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 &gt; 100 ) ? "value is big" : "value is small"; </code></pre> http://stackoverflow.com/questions/16998/reading-chunked-response-with-httpwebresponse 4 Reading "chunked" response with HttpWebResponse Craig 2008-08-19T21:28:53Z 2008-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#237632 3 Answer by Craig for Error Tracking in live/production web applications Craig 2008-10-26T05:49:30Z 2008-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#227759 0 Answer by Craig for Int128 in .Net? Craig 2008-10-22T22:28:16Z 2008-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#129540 6 Answer by Craig for When did you know it was time to leave your job? Craig 2008-09-24T20:05:32Z 2008-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#129373 27 Answer by Craig for Hidden Features of Visual Studio (2005-2008)? Craig 2008-09-24T19:36:02Z 2008-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#96346 2 Answer by Craig for Visual Studio: Detecting unneeded Assemblies Craig 2008-09-18T20:04:50Z 2008-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#74444 0 Answer by Craig for DropdownList autoposback after client confirmation Craig 2008-09-16T16:50:59Z 2008-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#74027 0 Answer by Craig for DropdownList autoposback after client confirmation Craig 2008-09-16T16:08:19Z 2008-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> &lt;asp:DropDownList ID="TestDropDown" runat="server" AutoPostBack="true" CausesValidation="true" ValidationGroup="Group1" OnSelectedIndexChanged="TestDropDown_SelectedIndexChanged"&gt; &lt;asp:ListItem Value="1" Text="One" /&gt; &lt;asp:ListItem Value="2" Text="Two" /&gt; &lt;/asp:DropDownList&gt; &lt;script type="text/javascript"&gt; function ConfirmDropDownValueChange(source, arguments) { arguments.IsValid = confirm("Are you sure?"); } &lt;/script&gt; &lt;asp:CustomValidator ID="ConfirmDropDownValidator" runat="server" ClientValidationFunction="ConfirmDropDownValueChange" Display="Dynamic" ValidationGroup="Group1" /&gt; </code></pre> http://stackoverflow.com/questions/52753/should-i-derive-custom-exceptions-from-exception-or-applicationexception-in-net/52782#52782 1 Answer by Craig for Should I derive custom exceptions from Exception or ApplicationException in .NET? Craig 2008-09-09T20:05:27Z 2008-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#50161 2 Answer by Craig for How do you backup IIS's metabase in C#? Craig 2008-09-08T17:03:50Z 2008-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#50517 2 Answer by Craig for Would you override ScriptControl or BaseValidator for an async ASP.NET validator control? Craig 2008-09-08T19:52:08Z 2008-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#42427 1 Answer by Craig for ASP.Net: why is my button's click/command events not binding/firing in a repeater? Craig 2008-09-03T19:51:47Z 2008-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#42401 0 Answer by Craig for Recommended Fonts for Programming? Craig 2008-09-03T19:44:19Z 2008-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#42382 0 Answer by Craig for What does the EXE do in the Visual Studio setup project output Craig 2008-09-03T19:37:35Z 2008-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#42320 0 Answer by Craig for User Interface Design Craig 2008-09-03T19:05:22Z 2008-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#42300 0 Answer by Craig for Subversion Partial Export Craig 2008-09-03T18:54:43Z 2008-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#1798844 Comment by Craig on Ultra simple version control Craig 2009-11-25T18:10:50Z 2009-11-25T18:10:50Z Yeah 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#423786 Comment by Craig on Worst UI You've Ever Used Craig 2009-11-23T19:27:47Z 2009-11-23T19:27:47Z What, no &quot;Reset&quot; button? http://stackoverflow.com/questions/1579795/web-based-method-to-determine-if-an-iphone-is-connected-via-3g-or-wifi Comment by Craig on Web based method to determine if an iPhone is connected via 3G or Wifi Craig 2009-10-16T19:05:23Z 2009-10-16T19:05:23Z Seems 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#1533771 Comment by Craig on How to upgrade a password storage scheme (change hashing-algorithm) Craig 2009-10-07T19:50:14Z 2009-10-07T19:50:14Z You could also have the login process &quot;upgrade&quot; 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#1495602 Comment by Craig on Namespace being automatically imported Craig 2009-09-30T00:33:33Z 2009-09-30T00:33:33Z If it's an asp.net web application (as opposed to web site) then it definitely is in a namespace. You can right-click-&gt;properties on the web project to see. http://stackoverflow.com/questions/1246546/best-practices-for-c-gui-naming-conventions/1246594#1246594 Comment by Craig on Best practices for C# GUI naming conventions? Craig 2009-09-26T22:33:04Z 2009-09-26T22:33:04Z That MS support article only lists VB4/VB6 languages in the &quot;Applies To&quot; 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#1481892 Comment by Craig on Best practices for C# GUI naming conventions? Craig 2009-09-26T22:29:43Z 2009-09-26T22:29:43Z Personally 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#1349294 Comment by Craig on Best practices for C# GUI naming conventions? Craig 2009-09-26T18:48:45Z 2009-09-26T18:48:45Z +1 for linking Microsoft's .NET naming recommendations. http://stackoverflow.com/questions/1385651/resharper-problem-with-unit-tests Comment by Craig on Resharper problem with unit tests Craig 2009-09-21T13:54:00Z 2009-09-21T13:54:00Z Yeah 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-booting Comment by Craig on How to diagnose computer hardware without booting? Craig 2009-09-19T00:21:32Z 2009-09-19T00:21:32Z This should probably be on SuperUser. http://stackoverflow.com/questions/883004/where-can-i-find-a-dead-simple-explanation-of-mvc/883115#883115 Comment by Craig on Where can I find a dead-simple explanation of MVC? Craig 2009-05-19T14:31:33Z 2009-05-19T14:31:33Z Best. MVC diagram. Ever. http://stackoverflow.com/questions/774359/setting-cls-compliance-for-a-net-assembly/774366#774366 Comment by Craig on Setting CLS compliance for a .NET assembly Craig 2009-04-21T20:19:38Z 2009-04-21T20:19:38Z Generally 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#398631 Comment by Craig on What backup strategy do you use for your code? Craig 2008-12-29T21:12:17Z 2008-12-29T21:12:17Z +1 for sync != backup http://stackoverflow.com/questions/100420/hidden-features-of-visual-studio-2005-2008/100511#100511 Comment by Craig on Hidden Features of Visual Studio (2005-2008)? Craig 2008-09-24T19:30:46Z 2008-09-24T19:30:46Z Not sure about the difference but I've always used Ctrl+Alt.