User Grank - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T07:07:59Z http://stackoverflow.com/feeds/user/12975 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/134698/catching-exceptions-as-expected-program-execution-flow-control 4 Catching exceptions as expected program execution flow control? Grank 2008-09-25T17:25:52Z 2009-10-12T08:24:18Z <p>I always felt that expecting exceptions to be thrown on a regular basis and using them as flow logic was a bad thing. Exceptions feel like they should be, well, the "<em>exception</em>". If you're expecting and planning for an exception, that would seem to indicate that your code should be refactored, at least in .NET...<br /> However. A recent scenario gave me pause. I posted this on msdn a while ago, but I'd like to generate more discussion about it and this is the perfect place!<br /> <br /> So, say you've got a database table which has a foreign key for several other tables (in the case that originally prompted the debate, there were 4 foreign keys pointing to it). You want to allow the user to delete, but only if there are NO foreign key references; you DON'T want to cascade delete.<br /> I normally just do a check to see if there are any references, and if there are, I inform the user instead of doing the delete. It's very easy and relaxing to write that in LINQ as related tables are members on the object, so Section.Projects and Section.Categories and et cetera is nice to type with intellisense and all...<br /> But the fact is that LINQ then has to hit potentially all 4 tables to see if there are any result rows pointing to that record, and hitting the database is obviously always a relatively expensive operation.<br /> <br/> The lead on this project asked me to change it to just catch a SqlException with a code of 547 (foreign key constraint) and deal with it that way.<br /> <br/> I was...<br/> <em>resistant</em>.<br /> <br/> But in this case, it's probably a lot more efficient to swallow the exception-related overhead than to swallow the 4 table hits... Especially since we have to do the check in every case, but we're spared the exception in the case when there are no children...<br /> Plus the database really should be the one responsible for handling referential integrity, that's its job and it does it well...<br /> So they won and I changed it.<br/> <br /> On some level it still feels <em>wrong</em> to me though.<br /> <br/> What do you guys think about expecting and intentionally handling exceptions? Is it okay when it looks like it'll be more efficient than checking beforehand? Is it more confusing to the next developer looking at your code, or less confusing? Is it safer, since the database might know about new foreign key constraints that the developer might not think to add a check for? Or is it a matter of perspective on what exactly you think best practice is?<br /></p> http://stackoverflow.com/questions/914302/integrated-windows-authentication-in-wcf-on-iis-6-0/1412142#1412142 0 Answer by Grank for Integrated Windows Authentication in WCF on IIS 6.0 Grank 2009-09-11T17:03:36Z 2009-09-11T17:32:45Z <p>After some digging, I finally discovered that this works if you change "Windows" to "Ntlm". I never could get it to work with Kerberos but you mention not wanting to use certificates anyway. </p> <p>If you're still having trouble, you might look at what's in the IIS metabase for the site in question under NTAuthenticationProviders. If you want to use only Ntlm, you'll need to set that string to just "NTLM", and you'll need to make sure it says "Ntlm" not "Windows" in your transport clientCredentialType or you'll get the exception you quoted in your original post.</p> <p>Conversely, if anyone is experiencing this error and they WANT to use Kerberos certificates if available, they should check to see if the metabase NTAuthenticationProviders says "Negotiate,NTLM". This is the default, but is mysteriously different for me on a VM on which I was trying to run a WCF service today (which ultimately brought me to this thread!)</p> http://stackoverflow.com/questions/537702/can-i-prevent-window-onbeforeunload-from-being-called-when-doing-an-ajax-call/1160799#1160799 0 Answer by Grank for Can I prevent window.onbeforeunload from being called when doing an AJAX call Grank 2009-07-21T18:14:09Z 2009-07-27T16:39:57Z <p>If you're talking about ASP.NET AJAX partial postbacks, then I encountered this behavior today too, doing the exact same thing. (If you're not, ignore my post completely.)</p> <p>In my experience so far, it seems like if your partial postback is triggered by an <strong><em>input</em></strong>, it won't fire onbeforeunload during a partial postback, but if the partial postback is triggered by a <strong><em>hyperlink</em></strong>, it will. It seems like the browser assumes you're navigating away if you click on anything in an anchor tag (only tested in IE and FireFox but yeah).</p> <p>Whether or not the page has a certain hidden field is already what I was using to determine client-side when it's appropriate to show the navigate away warning, so I was able to fix this very simply by adding a check of the hidden field's value to my onbeforeunload's if condition, and hooking into the PageRequestManager's BeginRequest and EndRequest handlers to set the value. That effectively disables the warning during partial postbacks. You could add more complicated logic here if there were more specific things you wanted to check.</p> <p>Here's a really over-simplified code sample. (sorry if i pared and censored to the point where it doesn't work but it should give you an idea.)</p> <pre><code>window.onbeforeunload = checkNavigateAway; Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(onBeginRequest); Sys.WebForms.PageRequestManager.getInstance().add_endRequest(onEndRequest); function onBeginRequest(sender, args) { var navigateAwayFlag = $("input[id*='navigateAwayValue']"); if (navigateAwayFlag.length &gt; 0) { navigateAwayFlag[0].value = "false"; } } function onEndRequest(sender, args) { var navigateAwayFlag = $("input[id*='navigateAwayValue']"); if (navigateAwayFlag.length &gt; 0) { navigateAwayFlag[0].value = "true"; } } function checkNavigateAway() { var navigateAwayFlag = $("input[id*='navigateAwayValue']"); if (navigateAwayFlag.length &gt; 0 &amp;&amp; navigateAwayFlag[0].value == "true") { return "Warning Text"; } } </code></pre> <p><strong>Edit</strong>: Bad news. The above doesn't seem to work in IE6. It seems like it fires events in a different order than Firefox, so the onbeforeunload fires before the AJAX beginRequest... May have to find a way to change the flag's value via the hyperlink click before the onbeforeunload fires.</p> http://stackoverflow.com/questions/285422/visual-studio-c-statement-collapsing 12 Visual Studio C# statement collapsing Grank 2008-11-12T21:20:35Z 2009-07-19T20:14:57Z <p>When editing really long code blocks (which should definitely be refactored anyway, but that's beyond the scope of this question), I often long for the ability to collapse statement blocks like one can collapse function blocks. That is to say, it would be great if the minus icon appeared on the code outline for everything enclosed in braces. It seems to appear for functions, classes, regions, namespaces, usings, but not for conditional or iterative blocks. It would be fantastic if I could collapse things like ifs, switches, foreaches, that kind of thing!</p> <p>Googling into that a bit, I discovered that apparently C++ outlining in VS allows this but C# outlining in VS does not. I don't really get why. Even notepad++ will so these collapses if I select the C# formatting, so I don't get why Visual Studio doesn't.</p> <p>Does anyone know of a VS2008 add-in that will enable this behavior? Or some sort of hidden setting for it?</p> <p>Edited to add: inserting regions is of course an option and it did already occur to me, but quite frankly, I shouldn't have to wrap things in a region that are already wrapped in braces... if I was going to edit the existing code, I would just refactor it to have better separation of concern anyway. ("wrapping" with new methods instead of regions ;)</p> http://stackoverflow.com/questions/940769/use-asp-net-resource-strings-from-within-javascript-files 1 Use ASP.NET Resource strings from within javascript files Grank 2009-06-02T17:20:05Z 2009-06-02T18:43:53Z <p>How would one get resx resource strings into javascript code stored in a .js file? </p> <p>If your javascript is in a script block in the markup, you can use this syntax:</p> <pre><code>&lt;%$Resources:Resource, FieldName %&gt; </code></pre> <p>and it will parse the resource value in as it renders the page... Unfortunately, that will only be parsed if the javascript appears in the body of the page. In an external .js file referenced in a &lt;script&gt; tag, those server tags obviously never get parsed.</p> <p>I don't want to have to write a ScriptService to return those resources or anything like that, since they don't change after the page is rendered so it's a waste to have something that active.</p> <p>One possibility could be to write an ashx handler and point the &lt;script&gt; tags to that, but I'm still not sure how I would read in the .js files and parse any server tags like that before streaming the text to the client. Is there a line of code I can run that will do that task similarly to the ASP.NET parser?</p> <p>Or does anyone have any other suggestions?</p> http://stackoverflow.com/questions/660533/how-can-i-get-arrays-to-have-a-name-other-than-items-when-generating-c-code-fr 1 How can I get arrays to have a name other than "Items" when generating C# code from an XSD schema? Grank 2009-03-18T23:47:03Z 2009-04-02T14:04:26Z <p>I'm working on a project that has to connect to some ancient webservices that pack some hierarchical data for requests and responses into single strings of hierarchical XML. </p> <p>I've been using xsd.exe to generate XSDs from sample request and response XML fragments, modifying them where necessary to be the best possible definition, and using xsd.exe again to generate C# objects. The managers that call the webservices can then take those strongly-typed request objects as parameters, serialize them to strings in order to make the calls, get the responses back as strings, deserialize them into the strongly-typed response objects and return those.</p> <p>If I have, say, a list of strings, I can have a valid XSD that considers it a complex type of an unbounded xs:choice of xs:string elements, and then it will deserialize simply to a string array, which is nice and simple to deal with. The annoying problem is that for some reason, there doesn't seem to be any way to get it to call the string array anything other than "<em>Items</em>". No matter <strong><em>what</em></strong> I add to the schema, I can't get xsd.exe to write any other name.</p> <p>Here's an example XSD schema:</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;xs:schema id="AccountStatusRequest" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"&gt; &lt;xs:element name="AccountStatusRequest"&gt; &lt;xs:complexType&gt; &lt;xs:choice minOccurs="0" maxOccurs="unbounded" id="AccountRowIDs"&gt; &lt;xs:element nillable="true" type="xs:string" id="AccountRowID" name="AccountRowID"/&gt; &lt;/xs:choice&gt; &lt;/xs:complexType&gt; &lt;/xs:element&gt; &lt;/xs:schema&gt; </code></pre> <p>And the resulting class:</p> <pre><code>public partial class AccountStatusRequest { private string[] itemsField; [System.Xml.Serialization.XmlElementAttribute("AccountRowID", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=true)] public string[] Items { get { return this.itemsField; } set { this.itemsField = value; } } } </code></pre> <p>I've tried adding pretty much every msdata: attribute in intellisense to both the choice and the inner element, and nothing makes a difference.</p> <p>Just for the sake of argument, I added a couple extra similar choices to that complexType, to see if that would force it to use a name for the string arrays, but instead it gave me <em>Items</em>, <em>Items1</em>, <em>Items2</em>...</p> <p>I really don't want it to have to be an array of its own type that only holds a string, but I also really don't want to leave it called "<em>Items</em>", without xml comments (does anyone know how to add THOSE to an xsd?), when it should have a more descriptive name. And I definitely can't just change it manually as the desired workflow whenever the webservice schemas change is to change the XSDs and then re-generate the classes from them.</p> <p>This seems like another one of those things xsd.exe should support. Is there something I'm missing? Should I take a different approach somehow? Or is there an alternative tool I can use for this instead that's less lame?</p> http://stackoverflow.com/questions/274024/regular-expressions-differences-between-browsers 1 Regular expressions: Differences between browsers Grank 2008-11-07T23:46:14Z 2008-11-08T19:01:12Z <p>I'm increasingly becoming aware that there must be major differences in the ways that regular expressions will be interpreted by browsers.<br /> As an example, a co-worker had written this regular expression, to validate that a file being uploaded would have a PDF extension:</p> <pre><code>^(([a-zA-Z]:)|(\\{2}\w+)\$?)(\\(\w[\w].*))(.pdf)$ </code></pre> <p>This works in Internet Explorer, and in Google Chrome, but does NOT work in Firefox. The test always fails, even for an actual PDF. So I decided that the extra stuff was irrelevant and simplified it to:</p> <pre><code>^.+\.pdf$ </code></pre> <p>and now it works fine in Firefox, as well as continuing to work in IE and Chrome.<br /> Is this a quirk specific to asp:FileUpload and RegularExpressionValidator controls in ASP.NET, or is it simply due to different browsers supporting regex in different ways? Either way, what are some of the latter that you've encountered?</p> http://stackoverflow.com/questions/273991/net-component-that-implements-sliding-dialogs-drawers-ala-winamp/274050#274050 0 Answer by Grank for .NET component that implements sliding dialogs (drawers) ala WinAmp Grank 2008-11-07T23:59:10Z 2008-11-07T23:59:10Z <p>Specifically what kind of .NET application are you writing? Animating fly-outs is particularly easy in a WPF app, and you wouldn't really have a need for a third-party component library.<br /> That having been said, if I change my Winamp to the Modern skin and click on that Config button, it doesn't slide in and out, it just pops all the way open, so I'm only imagining the kind of effect to which you refer (maybe I have an older version?)</p> http://stackoverflow.com/questions/273795/how-to-run-google-earth-inside-a-wpf-control/273800#273800 1 Answer by Grank for How to run Google Earth Inside a WPF Control Grank 2008-11-07T22:07:34Z 2008-11-07T22:07:34Z <p>If you have a Windows Forms control that already works exactly as you want, you could always use WindowsFormsHost to put that control on your WPF form. That might be the easiest thing to do... or is that what you're already doing that isn't working?</p> http://stackoverflow.com/questions/262547/reasons-not-to-use-an-auto-incrementing-number-for-a-primary-key/262594#262594 1 Answer by Grank for Reasons not to use an auto-incrementing number for a primary key Grank 2008-11-04T17:24:01Z 2008-11-04T17:24:01Z <p>I would prefer to use a GUID for most of the scenarios in which the post's current method makes any sense to me (replication being a possible one). If replication was the issue, such a stored procedure would have to be aware of the other server which would have to be linked to ensure key uniqueness, which would make it very brittle and probably a poor way of doing this.<br /> One situation where I use integer primary keys that are NOT auto-incrementing identities is the case of rarely-changed lookup tables that enforce foreign key constraints, that will have a corresponding enum in the data-consuming application. In that scenario, I want to ensure the enum mapping will be correct between development and deployment, especially if there will be multiple prod servers.</p> http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/255637#255637 34 Answer by Grank for What is your best programmer joke? Grank 2008-11-01T08:01:02Z 2008-11-01T08:01:02Z <p>I stuck this on the fridge at work, because the dev process, as with everything in life, was obviously best described by Devo:</p> <p><img src="http://graphjam.files.wordpress.com/2008/06/gj183.gif" alt="Whip It" /></p> http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/255635#255635 129 Answer by Grank for What is your best programmer joke? Grank 2008-11-01T07:57:42Z 2008-11-01T07:57:42Z <p>ASCII stupid question, get a stupid ANSI</p> http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/255632#255632 105 Answer by Grank for What is your best programmer joke? Grank 2008-11-01T07:52:07Z 2008-11-01T07:52:07Z <p>Visual Studio likes to put a comment block at the top of some of the support files it maintains itself automatically that makes the very matter-of-fact statement:</p> <pre><code>This code was generated by a tool. </code></pre> <p>I think I'm finally approaching getting tired of giggling at that, but it took way too long...</p> http://stackoverflow.com/questions/244445/best-refactoring-for-the-dreaded-while-true-loop/244491#244491 2 Answer by Grank for Best refactoring for the dreaded While (True) loop Grank 2008-10-28T19:22:02Z 2008-10-28T19:22:02Z <p>If you want it to continue indefinitely until a total abortion of program flow, I don't see anything wrong with while (true). I encountered it recently in a .NET data collection service that combined while (true) with thread.sleep to wake up every minute and poll the third-party data service for new reports. I considered refactoring it with a timer and a delegate, but ultimately decided that this was the simplest and easiest-to-read method. 9 times out of 10 it's a clear code smell, but when there's no exit condition, why make things more difficult?</p> http://stackoverflow.com/questions/238413/lambda-expression-tree-parsing/238425#238425 -1 Answer by Grank for Lambda Expression Tree Parsing Grank 2008-10-26T18:42:45Z 2008-10-26T18:42:45Z <p>I'm not sure I understand. Where are you "seeing" that? Is that at design-time or run-time? Lambda expressions can be thought of essentially as anonymous delegates, and will operate with deferred execution. So you shouldn't expect to see the value assigned until after execution has passed that line, obviously. <br /> I don't think that's really what you mean though... if you clarify the question a bit maybe I can help :)</p> http://stackoverflow.com/questions/207631/are-net-applications-immune-from-classic-pointer-errors/207655#207655 0 Answer by Grank for Are .Net applications immune from classic pointer errors? Grank 2008-10-16T07:11:43Z 2008-10-16T07:11:43Z <p>I haven't personally encountered anything related to memory management or chipset, but I've seen a LOT of wholly unexpected exceptions flow out of COMesque situations (LDAP as a lousy example, maybe file or database i/o) where you might not declare or feel like you're calling "unsafe" code but nonetheless encounter low-level problems beyond your control that return nothing but obscure error codes... <br /> Stack overflows are easy. Nothing in .NET protects against infinite recursion. Sometimes you're in a race as to whether you get a stack overflow first or a value overflow in something you're incrementing as you go, but oh, it can happen if you're not paying attention to your exit conditions!<br /> Other than some pretty wild special case of which I can't even conceive, I don't think it's possible or at least very likely that you'll ever run into most of the low level errors that you deal with as a matter of course in C++.<br /> Most .NET memory leaks occur when someone is messing with garbage disposal manually and not understanding how the .NET garbage collection system works. But you have to be careful about anything that uses external resources. However, anything I can think of either implements IDisposable or requires the unsafe keyword.</p> http://stackoverflow.com/questions/76044/is-there-a-way-to-productively-do-silverlight-development-without-buying-vs2008/202062#202062 2 Answer by Grank for Is there a way to productively do Silverlight development without buying VS2008? Grank 2008-10-14T17:23:17Z 2008-10-14T17:23:17Z <p>Hey, They just released <a href="http://www.eclipse4sl.org/" rel="nofollow">Eclipse tools for Silverlight (eclipse4SL)</a> and I remembered this thread!</p> http://stackoverflow.com/questions/199077/what-is-a-good-toolkit-for-developing-blackberry-applications/199310#199310 4 Answer by Grank for What is a good toolkit for developing Blackberry applications? Grank 2008-10-13T22:43:44Z 2008-10-13T22:43:44Z <p>My understanding is that blackberry's OS is Java ME - based, and that there's a decent development kit for them. I presume you have already <a href="http://na.blackberry.com/eng/developers/" rel="nofollow">looked over everything here</a>... you can find a lot of information, including the development kit download link. <br /> Regarding model-view-controller, there's no particular framework to my knowledge, but I don't see why you wouldn't be able to take MVC as an approach in the paradigmatic sense. Google has resources out there on java developers working with MVC.</p> http://stackoverflow.com/questions/198320/linq-to-sql-class-lifespan/199159#199159 2 Answer by Grank for Linq to SQL class lifespan Grank 2008-10-13T21:57:26Z 2008-10-13T22:05:57Z <p>Having now reviewed the code sample you edited to post, I would definitely refactor your class to take advantage of LINQ-to-SQL's built in functionality. (I won't edit my previous comment because it's a better answer to the general question)<br /> Your class's fields appear to be a pretty direct mapping of the columns on the Comments table in the database. Therefore you don't need to do most of what you're doing manually in this class. Most of the functionality could be handled by just having a private member of type Madtastic.Entities.Comment (and just mapping your properties to its properties if you have to maintain how this class interacts with the rest of the project). Then your constructor can just initialize a private member Madtastic.DataContext and set your private member Madtastic.Entities.Comment to the result of the LINQ query on it. If the comment is null, create a new one and call InsertOnSubmit on the DataContext. (but it doesn't make sense to submit changes yet because you haven't set any values for this new object anyway)<br /> In your SubmitChanges, all you should have to do is call SubmitChanges on the DataContext. It keeps its own track of whether or not the data needs to be updated, it won't hit the database if it doesn't, so you don't need _isDirty.<br /> In your Delete(), all you should have to do is call DeleteOnSubmit on the DataContext.<br /> You may in fact find with a little review that you don't need the Madtastic.Comment class at all, and the Madtastic.Entities.Comment LINQ-to-SQL class can act directly as your data access layer. It seems like the only practical differences are the constructor that takes a commentID, and the fact that the Entities.Comment has a UsersID property where your Madtastic.Comment class has a whole User. (However, if User is also a table in the database, and UsersID is a foreign key to its primary key, you'll find that LINQ-to-SQL has created a User object on the Entities.Comment object that you can access directly with comment.User)<br /> If you find you can eliminate this class entirely, it might mean that you can further optimize your DataContext's life cycle by bubbling it up to the methods in your project that make use of Comment.</p> <p>Edited to post the following example refactored code (apologies for any errors, as I typed it in notepad in a couple seconds rather than opening visual studio, and I wouldn't get intellisense for your project anyway):</p> <pre><code>namespace Madtastic { public class Comment { private Madtastic.DataContext mdc; private Madtastic.Entities.Comment comment; public Int32 ID { get { return comment.CommentsID; } } public Madtastic.User Owner { get { return comment.User; } } public Comment(Int32 commentID) { mdc = new Madtastic.DataContext(); comment = (from c in mdc.Comments where c.CommentsID == commentID select c).FirstOrDefault(); if (comment == null) { comment = new Madtastic.Entities.Comment(); mdc.Comments.InsertOnSubmit(comment); } } public void SubmitChanges() { mdc.SubmitChanges(); } public void Delete() { mdc.Comments.DeleteOnSubmit(comment); SubmitChanges(); } } } </code></pre> <p>You will probably also want to implement IDisposable/using as a number of people have suggested.</p> http://stackoverflow.com/questions/198320/linq-to-sql-class-lifespan/198647#198647 2 Answer by Grank for Linq to SQL class lifespan Grank 2008-10-13T18:57:16Z 2008-10-13T18:57:16Z <p>Depends on to what you refer by a "LINQ-to-SQL class", and what the code in question looks like.<br /> If you're talking about the DataContext object, and your code is a class with a long lifetime or your program itself, I believe it would be best to initialize it in the constructor. It's not really like creating and/or opening a new SqlConnection, it's actually very smart about managing its database connection pool and concurrency and integrity so that you don't need to think about it, that's part of the joy in my experience so far with LINQ-to-SQL. I've never seen a time-out problem occur.<br /> One thing you should know is that it's very difficult to share table objects across DataContext scope, and it's really not recommended if you can avoid it. Detach() and Attach() can be bitchy. So if you need to pass around a LINQ-to-SQL object that represents a row in a table on your SQL database, you should try to design the life cycle of the DataContext object to encompass all the work you need to do on any object that comes out of it. <br /> Furthermore, there's a lot of overhead that goes into instantiating a DataContext object, and a lot of overhead that is managed by it... If you're hitting the same few tables over and over it would be best to use the same DataContext instance, as it will manage its connection pool, and in some cases cache some things for efficiency. However, it's recommended to not have every table in your database loaded into your DataContext, only the ones you need, and if the tables being accessed are very separate in very separate circumstances, you can consider splitting them into multiple DataContexts, which gives you some options on when you initialize each one if the circumstances surrounding them are different. </p> http://stackoverflow.com/questions/190385/how-to-manipulate-images-at-pixel-level-in-c/190413#190413 3 Answer by Grank for How to manipulate images at pixel level in C#? Grank 2008-10-10T07:27:53Z 2008-10-10T07:27:53Z <p>System.Drawing.Bitmap has a GetPixel(int x, int y) public method that returns a System.Drawing.Color structure. That struct has byte members R, G, B, and A, which you can modify directly, and then call SetPixel(Color) on your Bitmap again.<br /> Unfortunately, that's going to be relatively slow, but it's by the easiest way to do it in C#. If you are working with individual pixels a lot and find the performance is lacking, and you need something faster, you can use LockBits... It's a lot more complicated though, as you need to understand the bit structure for that color depth and type, and work with the bitmap's stride and what not... so if you find it's necessary, make sure you find a good tutorial! There are several out there on the web, Googling "C# LockBits" will get you a half dozen that are worth a read.</p> http://stackoverflow.com/questions/189831/should-we-upgrade-to-sql-server-2005-or-2008/189837#189837 4 Answer by Grank for Should we upgrade to SQL Server 2005 or 2008? Grank 2008-10-10T01:38:29Z 2008-10-10T01:38:29Z <p>2005 is already quite different from 2000, at least in best practices, as a number of things like error handling are greatly improved. As far as learning curve is concerned, if you're going to throw the learning curveball at them anyway, they're probably better off learning the new technology rather than the one that is already a few years old.<br /> Beyond that though, it's difficult to comment on new features without you providing any info on what kind of work your company does. One thing I'm very excited about in SQL 2008 is the geospatial data type that I wish had come out a few months prior (perhaps, the initial planned release date) as they would have made our huge mapping application much easier...</p> http://stackoverflow.com/questions/176998/what-is-the-most-important-feature-in-mono-2-0/177059#177059 1 Answer by Grank for What is the most important feature in Mono 2.0? Grank 2008-10-07T02:46:43Z 2008-10-07T02:46:43Z <p>Windows.Forms is definitely way up there... that might be the feature I'm most excited about. And LINQ-to-XML should be good. I'm looking forward to more LINQ providers now that the LINQ core is available! :)</p> http://stackoverflow.com/questions/176626/java-script-to-edit-page-content-on-the-fly/176644#176644 0 Answer by Grank for Java Script to edit page content on the fly Grank 2008-10-06T23:23:53Z 2008-10-06T23:23:53Z <p>document.designMode is supported in IE 4+ (which started it apparently) and FireFox 1.3+. You turn it on and you can edit the content right in the browser, it's pretty trippy. I've never used it before but it sounds like it would be pretty perfect for hand picking printable information.</p> <p>Edited to say: It also appears to work in Google Chrome. I've only tested it in Chrome and Firefox, as those are the browsers in which I have a javascript console, so I can't guarantee it works in Internet Explorer as I've never personally used it. My understanding is that this was an IE-only property that the other browsers picked up and isn't currently in any standards, so I'd be surprised if Firefox and Chrome support it but IE stopped.</p> http://stackoverflow.com/questions/165735/how-do-you-show-animated-gifs-on-a-windows-form-c/165741#165741 1 Answer by Grank for How do you show animated GIFs on a Windows Form (c#) Grank 2008-10-03T04:58:17Z 2008-10-03T04:58:17Z <p>If you put it in a PictureBox control, it should just work</p> http://stackoverflow.com/questions/165102/whats-wrong-with-linq-to-sql/165150#165150 1 Answer by Grank for What's wrong with Linq to SQL? Grank 2008-10-03T00:05:13Z 2008-10-03T00:05:13Z <p>A lot of the advantage to LINQ-to-SQL comes from supposedly being able to construct data queries right in your code-behind based on strongly-typed queryable/enumerable data objects from your dbml (which plays the role of a very limited DAL). So a consequence, as has already been mentioned, is that it encourages you somewhat towards playing outside strongly defined and separated layers or tiers to your application.<br /> To counter that point, it should mean that you should be able to eliminate most or all of any business logic you were writing into stored procedures on the database, so then at least you only have to go to the code that deals with the data to change non-schema-impacting business rules... However, that breaks down a bit when you realise how complicated it can be to write a query with an outer join with aggregates with grouping, at least when you first approach it. So you'll be tempted to write the sprocs in the SQL you know that is so simple and good at doing those things rather than spend the extra time trying to figure out the LINQ syntax to do the same thing when it's just going to convert it to ugly SQL code anyway...<br /> That having been said, I really do love LINQ, and my esteem for it vastly increased when I started ignoring this "query syntax is easier to read" sentiment I've seen floating around and switched to method syntax. Never looked back.</p> http://stackoverflow.com/questions/155217/good-c-code-samples/155240#155240 1 Answer by Grank for Good C# code samples? Grank 2008-09-30T21:47:42Z 2008-09-30T21:47:42Z <p>I would personally recommend against looking on the internet. Maybe someone knows a really good site that I haven't seen, but most of the code I <em>have</em> seen online has been... troubling. On a place like CodePlex or CodeProject or those kinds of sites, you see a lot of people who haven't learned how to do it properly, trying to hack through until they get something working, and then having found that difficult and strange, posting their code with the best intentions for anyone else having trouble with it... There is some fantastic code on sites like that as well, but it's hard to separate the good from the bad, especially if you're trying to learn from it and might not be able to tell at first glance who does and doesn't know what they're talking about.<br /> My suggestion for this would be to read a book, as at least in that case someone had to get it published and likely proofread by other developers (I've seen bad code in books too but it's not as prevalent) There are threads around here that talk about great books for developers, that might be a good place to start, since we're all developers here, so if we recommend a book it's probably not full of wtf code! And if it is, the suggestion would get quickly marked down through the power of peer review ;)<br /> Look forward to seeing some of the responses in this thread, as I'd love some great code to learn from myself!</p> http://stackoverflow.com/questions/153782/dropdown-controls-in-asp-net-2-0/153800#153800 2 Answer by Grank for Dropdown controls in ASP.NET 2.0 Grank 2008-09-30T16:16:58Z 2008-09-30T16:16:58Z <p>If I understand the question, Items.Add has an overload that takes a ListItem, so you could create a new ListItem object in that line:</p> <pre><code>Drop.Items.Add(new ListItem("text", "value")) </code></pre> http://stackoverflow.com/questions/151241/asp-net-ajax-nested-updatepanel-modalpopup-funkiness 2 ASP.NET AJAX nested updatePanel modalPopup funkiness Grank 2008-09-29T23:54:54Z 2008-09-30T16:10:35Z <p>It seems that in some cases, if you end up with nested modalPopups wrapped with updatePanels (not ideal I know, and should probably be refactored, but that's what we're working with because of how some of the user controls we wanted to re-use were written), when you fire a postback that should open the nested modalPopup, instead it closes the parent one. For the sake of argument, if I set a breakpoint and run </p> <pre><code>((ModalPopupExtender)this.Parent.Parent.FindControl("modalPopupExtender'sID").Show(); </code></pre> <p>right before the child modalPopup's Show() method is called, it works as we originally expected. It seems to me that, because when updatePanels are nested, they can post back their parent, the parent modalPopup "doesn't know" it's supposed to be showing and reloads its panel's visibility from scratch as false. Because the child modalPopup is then nested inside a parent panel whose visibility is false, calling Show() on it has no effect either. So instead of getting another modalPopup open, the current one closes. This is not an error, just behavior we didn't expect, so it was difficult to track down with no exception thrown anywhere, but I think the above explanation makes sense... If I've understood the problem incorrectly, please clarify it and enlighten me, because this doesn't seem to happen all the time I'd think it would!<br /> At this point for this particular situation we're stuck re-writing some of those controls to not end up with nested updatePanels so this doesn't happen, but I'm curious: <br /> Has anyone run into this problem before, and did you come up with any clever work-around that doesn't involve a call to FindControl() to re-Show() the modalPopup in question?</p> http://stackoverflow.com/questions/151241/asp-net-ajax-nested-updatepanel-modalpopup-funkiness/153771#153771 3 Answer by Grank for ASP.NET AJAX nested updatePanel modalPopup funkiness Grank 2008-09-30T16:10:35Z 2008-09-30T16:10:35Z <p>I have solved this problem!<br /> If you change the UpdatePanel's UpdateMode to "Conditional", the parent UpdatePanel doesn't post back when the child UpdatePanel posts back, and then nesting them is no issue at all!<br /> I'm not sure why UpdateMode="Always" is the default, but, lesson learned.</p> http://stackoverflow.com/questions/966789/adding-empty-string-to-radcombobox/1630455#1630455 Comment by Grank on Adding empty string to RadComboBox Grank 2009-11-16T17:46:05Z 2009-11-16T17:46:05Z The problem with this is that you don't get to use the EmptyMessage style. Why even use a RadComboBox then; unless you're using templates you might as well go back to good old asp:DropDownList. :P http://stackoverflow.com/questions/966789/adding-empty-string-to-radcombobox/966844#966844 Comment by Grank on Adding empty string to RadComboBox Grank 2009-11-16T17:45:13Z 2009-11-16T17:45:13Z Sadly this has nothing to do with it. EmptyMessage is only used when AllowCustomText is set to true, for some reason. It doesn't seem one can use the EmptyMessage style without allowing users to enter custom text. http://stackoverflow.com/questions/1146262/wcf-user-credentials/1147022#1147022 Comment by Grank on WCF + User credentials Grank 2009-09-11T16:33:47Z 2009-09-11T16:33:47Z I'm not sure what scenario in which you were able to do this, but in my experience, this is not allowed in WCF. You can't use message-mode username-credential security in basicHttpBinding, it's disallowed by the framework because the credentials would be passed in plain text. You'll get this InvalidOperationException: &quot;BasicHttp binding requires that BasicHttpBinding.Security.Message.ClientCredentialType be equivalent to the BasicHttpMessageCredentialType.Certificate credential type for secure messages. Select Transport or TransportWithMessageCredential security for UserName credentials.&quot; http://stackoverflow.com/questions/874640/edit-xml-node/874654#874654 Comment by Grank on Edit Xml Node Grank 2009-07-30T19:17:26Z 2009-07-30T19:17:26Z XmlNode has no SetAttribute method. You need to work with XmlElement instead. http://stackoverflow.com/questions/870186/remove-namespaces-prefix-in-sandcastle Comment by Grank on Remove Namespaces Prefix in Sandcastle Grank 2009-07-30T17:15:24Z 2009-07-30T17:15:24Z I have this same issue, it bugs me that I can't find a solution http://stackoverflow.com/questions/940769/use-asp-net-resource-strings-from-within-javascript-files/941207#941207 Comment by Grank on Use ASP.NET Resource strings from within javascript files Grank 2009-06-02T19:24:42Z 2009-06-02T19:24:42Z Hmm, an interesting approach. Might work for me. The drawbacks are that I have to have a separate resources file for only what I want to push out or else send extra stuff of no use... and that I'm inside sharepoint so reading the resx in as a file and parsing it may be a problem, we'll see. Thanks for the post! http://stackoverflow.com/questions/940769/use-asp-net-resource-strings-from-within-javascript-files/940781#940781 Comment by Grank on Use ASP.NET Resource strings from within javascript files Grank 2009-06-02T18:22:04Z 2009-06-02T18:22:04Z That would normally be my inclination as well, but in this case, it's a client side item clicked handler for a RadMenu, so it leads to a switch statement with 7 cases, all displaying different &quot;are you sure?&quot; strings :( http://stackoverflow.com/questions/285422/visual-studio-c-statement-collapsing/285430#285430 Comment by Grank on Visual Studio C# statement collapsing Grank 2008-11-12T21:50:52Z 2008-11-12T21:50:52Z Please see the edit of the original question; manual action required on the part of the developer (even using a one-or-two-click region-wrapping shortcut) doesn't really answer the question/desire for this to be done automatically http://stackoverflow.com/questions/285422/visual-studio-c-statement-collapsing/285490#285490 Comment by Grank on Visual Studio C# statement collapsing Grank 2008-11-12T21:48:35Z 2008-11-12T21:48:35Z Fair enough. I'm hoping to find through this question a way to add these blocks to the automatic outlining though, as it doesn't really make sense for them not to be. http://stackoverflow.com/questions/274024/regular-expressions-differences-between-browsers/274880#274880 Comment by Grank on Regular expressions: Differences between browsers Grank 2008-11-08T16:26:33Z 2008-11-08T16:26:33Z There are definitely browser differences, though they may be subtle. I'm sorry that you found the message confusing, it is so because I didn't know what the problem was. Turned out to be that FF doesn't provide the full upload path. I don't know why you said that you can't validate that with FF3. http://stackoverflow.com/questions/274024/regular-expressions-differences-between-browsers/274193#274193 Comment by Grank on Regular expressions: Differences between browsers Grank 2008-11-08T03:38:35Z 2008-11-08T03:38:35Z Your comment about cross-platform compatibility is a solid one, and something the original coder obviously didn't take into account. It's not really an answer to the actual question asked though, nor is the question about sufficient tests for file upload type (see my comment on the question) http://stackoverflow.com/questions/274024/regular-expressions-differences-between-browsers Comment by Grank on Regular expressions: Differences between browsers Grank 2008-11-08T03:34:31Z 2008-11-08T03:34:31Z I don't feel that has much to do with the question. I'll go out on a limb and say &quot;no one&quot; able to read/write regex is dumb enough to think a file extension validates content. What it DOES do is help avoid wasting server bandwidth, storage, and cycles on uploads not even named the right type! http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/240861#240861 Comment by Grank on What is your best programmer joke? Grank 2008-11-01T07:53:11Z 2008-11-01T07:53:11Z at least triplicate at this point actually http://stackoverflow.com/questions/244445/best-refactoring-for-the-dreaded-while-true-loop/244459#244459 Comment by Grank on Best refactoring for the dreaded While (True) loop Grank 2008-10-28T19:23:22Z 2008-10-28T19:23:22Z I don't agree; the mention of the timer &amp; delegate method would seem to suggest that the question is more targeted at a desired indefinite looping http://stackoverflow.com/questions/244445/best-refactoring-for-the-dreaded-while-true-loop/244459#244459 Comment by Grank on Best refactoring for the dreaded While (True) loop Grank 2008-10-28T19:17:21Z 2008-10-28T19:17:21Z Sometimes people do this for services, where execution is meant to continue indefinitely and is only broken OnStop or an exception. So there IS no condition.