User Keith - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T18:50:55Z http://stackoverflow.com/feeds/user/905 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/13049/whats-the-difference-between-struct-and-class-in-net 19 What's the difference between struct and class in .Net? Keith 2008-08-16T08:21:47Z 2009-12-10T15:54:45Z <p>I'm looking for a clear, concise and accurate answer. </p> <p>Ideally as the actual answer, although links to good explanations welcome.</p> http://stackoverflow.com/questions/1879860/most-reliable-split-character/1879957#1879957 3 Answer by Keith for Most reliable split character Keith 2009-12-10T09:57:59Z 2009-12-10T09:57:59Z <p>It depends what you're splitting.</p> <p>In most cases it's best to use split chars that are fairly commonly used, for instance</p> <blockquote> <p>value, value, value</p> <p>value|value|value</p> <p>key=value;key=value;</p> <p>key:value;key:value;</p> </blockquote> <p>You can use quoted identifiers nicely with commas:</p> <blockquote> <p>"value", "value", "value with , inside", "value"</p> </blockquote> <p>I tend to use <code>,</code> first, then <code>|</code>, then if I can't use either of them I use the section-break char <code>§</code></p> <p>Note that you can type any ASCII char with <code>ALT+number</code> (on the numeric keypad only), so <code>§</code> is <code>ALT+21</code></p> http://stackoverflow.com/questions/1867498/limit-collection-by-enum-using-lambda/1867527#1867527 1 Answer by Keith for Limit collection by enum using lambda Keith 2009-12-08T15:00:22Z 2009-12-08T15:00:22Z <p>You could also use Linq syntax:</p> <pre><code>var filtered = from p in items where p.Type == MyEnum.ValueIWant select p; </code></pre> <p>This will compile to exactly the same code as @Jason's suggestion.</p> http://stackoverflow.com/questions/1865431/strange-issue-about-in-url/1865498#1865498 2 Answer by Keith for Strange issue about # in url Keith 2009-12-08T08:26:25Z 2009-12-08T08:26:25Z <p><code>#</code> is used by the browser, and is never sent to the server. Everything after a <code>#</code> (regardless of what it is) is used by the browser to jump to a location on the page.</p> <p>So:</p> <pre><code>http://localhost/test/editformquestions.php#?formid=1 </code></pre> <p>Will be split as follows:</p> <ul> <li>Server request to <code>http://localhost/test/editformquestions.php</code></li> <li><p>Browser then searches in page for:</p> <pre><code>&lt;a name="?formid=1"&gt;named anchor tag&lt;/a&gt; </code></pre></li> </ul> <p>What you should do is:</p> <pre><code>http://localhost/test/editformquestions.php?formid=1&amp;othervar=2#anchorinpage </code></pre> <p>Or, if you need the <code>#</code> in a query-string parameter:</p> <pre><code>http://localhost/test/editformquestions.php?formid=1&amp;othervar=textwith%23init </code></pre> http://stackoverflow.com/questions/8042/extension-interface-patterns 4 Extension interface patterns Keith 2008-08-11T18:13:44Z 2009-12-07T10:26:19Z <p>The new extensions in .Net 3.5 allow functionality to be split out from interfaces.</p> <p>For instance in .Net 2.0</p> <pre><code>public interface IHaveChildren { string ParentType { get; } int ParentId { get; } List&lt;IChild&gt; GetChildren() } </code></pre> <p>Can (in 3.5) become:</p> <pre><code>public interface IHaveChildren { string ParentType { get; } int ParentId { get; } } public static class HaveChildrenExtension { public static List&lt;IChild&gt; GetChildren( this IHaveChildren ) { //logic to get children by parent type and id //shared for all classes implementing IHaveChildren } } </code></pre> <p>This seems to me to be a better mechanism for many interfaces. They no longer need an abstract base to share this code, and functionally the code works the same. This could make code more maintainable and easier to test.</p> <p>The only disadvantage being that an abstract bases implementation can be virtual, but can that be worked around (would an instance method hide an extension method with the same name? would it be confusing code to do so?)</p> <p>Any other reasons not to regularly use this pattern?</p> <p><hr /></p> <p>Clarification:</p> <p>Yeah, I see the tendency with extension methods is to end up with them everywhere. I'd be particularly careful having any on .Net value types without a great deal of peer review (I think the only one we have on string is a <code>.SplitToDictionary()</code> - similar to <code>.Split()</code> but taking a key-value delimiter too)</p> <p>I think there's a whole best practice debate there ;-)</p> <p>(Incidentally: DannySmurf, your PM sounds scary.)</p> <p>I'm specifically asking here about using extension methods where previously we had interface methods.</p> <p><hr /></p> <p>I'm trying to avoid lots of levels of abstract base classes - the classes implementing these models mostly already have base classes. I think this model could be more maintainable and less overly-coupled than adding further object hierarchies.</p> <p>Is this what MS have done to IEnumerable and IQueryable for Linq?</p> http://stackoverflow.com/questions/1858470/technology-choice-for-redesigning-an-old-visualbasic-application/1858796#1858796 3 Answer by Keith for Technology choice for redesigning an old VisualBasic-Application Keith 2009-12-07T09:17:52Z 2009-12-07T09:17:52Z <p>You already have lots of good advice here - I'd second @o.k.w - VB6 to any .net language has about the same learning curve.</p> <p>I'd add two things though:</p> <p>Are you keeping these mathematical functions in separate DLLs? If so how do you plan to access them. I'm asking because for COM interop VB.Net is much better than C#. VB.Net supports optional parameters and late-binding while C# doesn't - two things that make calling many COM functions from C# result in truly horrible code.</p> <p>At least for the time being - C#4 (due next year) supports optional parameters and dynamic types - it should be as good for COM interop as VB.Net then.</p> <p>Secondly I'd consider WPF vs Windows Forms very carefully - WPF is a whole new paradigm, more like developing web pages than traditional desktop apps. Even though you can do amazing things with WPF an awful lot of standard functionality is much harder to do in WPF than in old-school forms.</p> <p>If you have lots of input boxes, menus, ok &amp; cancel buttons, dialogs and the like then consider Forms instead. If you have a unique interface with lots of drawn graphics and few standard buttons or input boxes then consider WPF.</p> <p>Since you have a team of Delphi/VB6 desktop developers moving to .Net (something I've done with a team myself) you may find it easier to start building your application in Windows Forms (something a Delphi expert can pick up very quickly) and then look at moving to WPF (or adding it) when you come to part of the interface that you can't do easily in Forms.</p> <p>Also bear in mind that (at the moment) it's much easier to add WPF to a Forms application than the other way round.</p> http://stackoverflow.com/questions/87542/making-wcf-easier-to-configure 10 Making WCF easier to configure Keith 2008-09-17T20:50:49Z 2009-12-03T08:18:45Z <p>I have a set of WCF web services connected to dynamically by a desktop application.</p> <p>My problem is the really detailed config settings that WCF requires to work. Getting SSL to work involves custom settings. Getting MTOM or anything else to work requires more. You want compression? Here we go again...</p> <p>WCF is really powerful - you can use a host of different ways to connect, but all seem to involve lots of detailed config. If host and client don't match perfectly you get hard to decipher errors.</p> <p>I want to make the desktop app far easier to configure - ideally some kind of auto-discovery. The users of the desktop app should just be able to enter the URL and it do the rest.</p> <p>Does anyone know a good way to do this?</p> <p>I know Visual Studio can set the config up for you, but I want the desktop app to be able to do it based on a wide variety of different server set-ups.</p> <p>I know that VS's tools can be used externally, but I'm looking for users of the desktop apps to not have to be WCF experts. I know MS made this intentionally over complicated.</p> <p>Is there any way, mechanism, 3rd party library or anything to make auto-discovery of WCF settings possible?</p> http://stackoverflow.com/questions/87542/making-wcf-easier-to-configure/1834211#1834211 0 Answer by Keith for Making WCF easier to configure Keith 2009-12-02T16:45:10Z 2009-12-03T08:18:45Z <p>There is now another way to do this that wasn't available when I asked the original question. Microsoft now supports REST for WCF services.</p> <ul> <li>The downside of using REST is that you lose the WSDL.</li> <li>The upside is minimal config and your WCF contract interfaces will still work!</li> </ul> <p>You'll need a new reference to <code>System.ServiceModel.Web</code></p> <p>Mark your operations with either <code>WebInvoke</code> or <code>WebGet</code></p> <pre><code>//get a user - note that this can be cached by IIS and proxies [WebGet] User GetUser(string id ) //post changes to a user [WebInvoke] void SaveUser(string id, User changes ) </code></pre> <p>Adding these to a site is easy - add a <code>.svc</code> file:</p> <pre><code>&lt;%@ServiceHost Service="MyNamespace.MyServiceImplementationClass" Factory="System.ServiceModel.Activation.WebServiceHostFactory" %&gt; </code></pre> <p>The factory line tells ASP.net how to activate the endpoint - you need no server side config at all!</p> <p>Then constructing your <code>ChannelFactory</code> is pretty much unchanged, except that you don't need to specify an endpoint any more (or auto-discover one as I have in the other answers)</p> <pre><code>var cf = new WebChannelFactory&lt;IMyContractInterface&gt;(); var binding = new WebHttpBinding(); cf.Endpoint.Binding = binding; cf.Endpoint.Address = new EndpointAddress(new Uri("mywebsite.com/myservice.svc")); cf.Endpoint.Behaviors.Add(new WebHttpBehavior()); IMyContractInterface wcfClient = cf.CreateChannel(); var usr = wcfClient.GetUser("demouser"); // and so on... </code></pre> <p>Note that I haven't specified or discovered the client config - there's no local config needed!</p> <p>Another big upside is that you can easily switch to JSON serialisation - that allows the same WCF services to be consumed by Java, ActionScript, Javascript, Silverlight or anything else that can handle JSON and REST easily.</p> http://stackoverflow.com/questions/1809534/creating-a-caldav-service-with-net 0 Creating a CalDAV service with .Net Keith 2009-11-27T16:05:16Z 2009-11-30T16:24:11Z <p>I want to create a calendar in my application that external users can view.</p> <p>The CalDAV (basically WebDAV+iCalendar) format seems to be relatively widely supported, although if rather unusually by some clients (Outlook, for instance). Completely new to me though.</p> <p>I want to externally publish events, I don't need users to be able to update them.</p> <p>The text format of events in .ics files appears relatively simple:</p> <pre><code>BEGIN:VCALENDAR VERSION:2.0 CALSCALE:GREGORIAN BEGIN:VEVENT DTSTART:20091130T000000Z DTEND:20091201T000000Z SUMMARY:Test event for calendar format LOCATION:Company site DESCRIPTION:Test event.\nMore text on a new line END:VEVENT END:VCALENDAR </code></pre> <p>However I don't really want to write my own ics file builder. The key names starting on each line don't seem to be very consistent between ics files too.</p> <p>Is there a .Net implementation out there? Ideally I don't want to set up a whole WebDAV implementation - just the ability to retrieve a read-only calendar.</p> <p>I mainly want this to be at a url that users can sync from iPhone, Android and Blackberry phones. I know that they can handle CalDAV services from some suppliers but not others (for instance my iPhone can sync from Google calendar but fails with FaceBook's events) - anyone have any idea why?</p> <p>I think events can also contain MIME attachments - is this sufficiently supported to be worth looking into too? </p> <p><strong>Update</strong></p> <p>Further research on this has identified some weird inconsistencies in most implementations. None of the major mobile client OSs (iPhone, Blackberry, Android) can handle .ics files.</p> <p>However iPhones can open an .ics from a URL (choose to subscribe to a calendar) and this does work with FaceBook too. Blackberry and Android can't however. I think the Blackberry can handle the full CalDAV option (rather than just the .ics file) but don't know much about programming for it.</p> <p>Is there a consistent way to do this out there? </p> http://stackoverflow.com/questions/13055/what-is-boxing-and-unboxing-and-what-are-the-trade-offs 18 What is boxing and unboxing and what are the trade offs? Keith 2008-08-16T08:34:25Z 2009-11-27T19:06:13Z <p>I'm looking for a clear, concise and accurate answer. </p> <p>Ideally as the actual answer, although links to good explanations welcome.</p> http://stackoverflow.com/questions/1530495/master-detail-view-asp-net-mvc/1809215#1809215 0 Answer by Keith for Master-Detail View ASP.NET MVC Keith 2009-11-27T14:55:17Z 2009-11-27T14:55:17Z <p>You can do this fairly easily with MVC and jQuery.</p> <p>First in your <code>Orders\List.aspx</code> view:</p> <pre><code>&lt;script&gt; // once the page has loaded $(function() { // set up your click event to load data $('.list-item').click(function() { // ajax load the content returned by the detail action $('#detail').load('&lt;%= Url.Action("Detail") %&gt;', { id: this.id } ); }); }); &lt;/script&gt; &lt;style&gt; .list-item { cursor: pointer; } &lt;/style&gt; &lt;% // loop through the orders in your model and show them // as each div has the class list-item it will be give the click event foreach( var order in Model ) { %&gt; &lt;div id="&lt;%= order.Id %&gt;" class="list-item"&gt;&lt;%= order.Name %&gt;&lt;/div&gt; &lt;% } %&gt; &lt;%-- the panel that the ajaxed content will be loaded into --%&gt; &lt;div id="detail"&gt;&lt;/div&gt; </code></pre> <p>Then in your <code>Orders\Detail.ascx</code> partial view:</p> <pre><code>Id: &lt;%= Model.Id %&gt;&lt;br /&gt; Name: &lt;%= Model.Name %&gt;&lt;br /&gt; Description: &lt;%= Model.Description %&gt;&lt;br /&gt; etc </code></pre> http://stackoverflow.com/questions/1746693/how-to-embed-links-in-localized-text/1807773#1807773 2 Answer by Keith for How to embed links in localized text. Keith 2009-11-27T09:53:37Z 2009-11-27T09:53:37Z <p>I think this comes down to 4 choices: </p> <ol> <li>Put a link in your localisation: "Please &lt;a href="#"&gt;login&lt;/a&gt; to continue"</li> <li>Multiple localisations - either: <ol> <li>"Please {0} to continue" and "login", or</li> <li>"Please", "login" and " to continue"</li> </ol></li> <li>Markup inside your localisations, for instance: <ol> <li>"Please {0}login{1} to continue"</li> <li>"Please {start-login}login{end-login} to continue"</li> <li>"Please &lt;a href="{0}"&gt;login&lt;/a&gt; to continue"</li> </ol></li> <li>Just don't support it - make the whole sentence a link</li> </ol> <p>I think there is a major reason to avoid 1 - you mix up localisations and application navigation.</p> <p>Option 2 ends up with multiple resources for each block of text, but as long as you have good ways of managing all your localisations it shouldn't be an issue. It can be a pain for 3rd-party translators though - you need some way to tell them the context or you get some very weird translations of the individual words.</p> <p>Option 3 is my preferred solution. You still create issues for your translators though - most will not understand your tokens/HTML/markup in the text. Ours already do some HTML, so 3.3 has worked for us.</p> <p>Option 4 might be worth considering - do you gain enough in having the link embedded in order to make it worth the extra work and maintenance? It's an important question specific to your application: <em>if the whole sentence is the link (rather than just the active verb - which is link best practice) do you really lose enough to make option 2 or 3 worth the additional effort?</em></p> <p>I think this might be why there aren't more standardised ways of doing this as for most projects (maybe 9 times out of 10) option 4 is sufficient, so this only ends up as a problem for some special cases. We have a complex application with around 11,000 pieces of localised text and go for 4 the vast majority of the time, and have only 4 or 5 places where we've had to go with 3.3</p> <p>Our technical implementation is similar to yours:</p> <pre><code>&lt;%= Html.Localise("Controller/Action/KeyOfTextOnPage") %&gt; </code></pre> <p>For links we have a specific helper:</p> <pre><code>&lt;%= Html.LocaliseLink("Controller/Action/KeyOfTextOnPage", "~/link.aspx") %&gt; &lt;%= Html.LocaliseAction("Controller/Action/KeyOfTextOnPage", "action", "controller") %&gt; </code></pre> http://stackoverflow.com/questions/58744/best-way-to-copy-the-entire-contents-of-a-directory-in-c 4 Best way to copy the entire contents of a directory in C# Keith 2008-09-12T11:38:52Z 2009-11-24T17:47:05Z <p>I want to copy the entire contents of a directory from one location to another in C#.</p> <p>There doesn't appear to be a way to do this using <code>System.IO</code> classes without lots of recursion.</p> <p>There is a method in VB that we can use if we add a reference to <code>Microsoft.VisualBasic</code>:</p> <pre><code>new Microsoft.VisualBasic.Devices.Computer(). FileSystem.CopyDirectory( sourceFolder, outputFolder ); </code></pre> <p>This seems like a rather ugly hack. Is there a better way?</p> http://stackoverflow.com/questions/1735560/stop-the-browser-throbber-of-doom-while-loading-comet-server-push-xmlhttpreques/1788777#1788777 1 Answer by Keith for Stop the browser “throbber of doom” while loading comet/server push XMLHttpRequest Keith 2009-11-24T08:58:28Z 2009-11-24T08:58:28Z <p>I'm not sure, but it seems that if the browser shows that it's still downloading then that's entirely correct - isn't that basically what Comet programming is? The server is still sending unbuffered content and when that streams in a block of javascript it's executed, allowing the server to push events to the client browser.</p> <p>In the Ajax early days (for instance on IE6 where <code>XMLHttpRequest</code> was a separate ActiveX object) I'd of expected the browser to not know that it was still waiting.</p> <p>But in Safari 4, Chrome, FX3.5 and all the modern browsers the <code>XMLHttpRequest</code> is built in - it knows that it's still waiting for the server to still stream its content, exactly as it would with and <code>&lt;IFrame&gt;</code></p> <p>In short - I'd expect any Comet approach to show that the browser was still downloading because it is. I'd expect any workaround you find to get fixed in future builds because Comet is essentially a hack to get a server-push model working.</p> <p>However they have started to built real server-push support into HTML 5. </p> <p>Does mobile Webkit support the <a href="http://www.searchalert.net/dierken/eventsource/" rel="nofollow">HTML 5 draft <code>event-source</code></a> tag yet? If so you could potentially try that.</p> <p>Then you would have something like this:</p> <pre><code>&lt;!-- new HTML 5 tag supporting server-push --&gt; &lt;event-source src="http://myPushService.com" id="service"&gt; &lt;script type="text/javascript"&gt; function handleServiceEvent(event) { // do stuff } // tell browser to fire handleServiceEvent in response to server-push document.getElementById('service').addEventListener('event name', handleServiceEvent, false); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/7244/anyone-know-a-good-workaround-for-the-lack-of-an-enum-generic-constraint 10 Anyone know a good workaround for the lack of an enum generic constraint? Keith 2008-08-10T17:14:10Z 2009-11-20T11:08:24Z <p>What I want to do is something like this: I have enums with combined flagged values.</p> <pre><code>public static class EnumExtension { public static bool IsSet&lt;T&gt;( this T input, T matchTo ) where T:enum //the constraint I want that doesn't exist in C#3 { return (input &amp; matchTo) != 0; } } </code></pre> <p>So then I could do:</p> <pre><code>MyEnum tester = MyEnum.FlagA | MyEnum.FlagB if( tester.IsSet( MyEnum.FlagA ) ) //act on flag a </code></pre> <p>Unfortunately C#'s generic where constraints have no enum restriction, only class and struct. C# doesn't see enums as structs (even though they are value types) so I can't add extension types like this.</p> <p>Anyone know a workaround?</p> http://stackoverflow.com/questions/211941/logging-a-user-out-for-a-single-web-application-page 0 Logging a user out for a single web application page Keith 2008-10-17T12:29:22Z 2009-11-08T02:00:03Z <p>This is an extension of my <a href="http://stackoverflow.com/questions/205923">earlier XSS question</a>.</p> <p>Assuming that there isn't a Regex strong enough to guarantee XSS saftey for user entered URLs I'm looking at using a redirect.</p> <p>(Although if you do have one please add it under the other question)</p> <p>We have user input web addresses, so:</p> <blockquote> <p>stackoverflow.com</p> </blockquote> <p>They want a link to appear for other users, so:</p> <pre><code>&lt;a href="http://stackoverflow.com"&gt;stackoverflow.com&lt;/a&gt; </code></pre> <p>To reduce the risk of hacking I'm planning to use a warning page, so the link becomes:</p> <pre><code>&lt;a href="leavingSite.aspx?linkid=1234" target="_blank"&gt;stackoverflow.com&lt;/a&gt; </code></pre> <p>Then on that page there will be a warning message and a plain link to the original link:</p> <pre><code>&lt;a href="javascript:alert('oh noes! xss!');"&gt;Following this link at your own risk!&lt;/a&gt; </code></pre> <p>As we use a lot of Ajax I want to make that leaving-site page a walled garden of sorts, ideally by essentially logging the user out in that page only. I want them to stay logged in on the original page.</p> <p>Then if someone does get past the santisation Regex they can't access anything as the duped user.</p> <p>Anyone know how to do this? Is it possible to log out one window/tab without logging them all out? We support IE &amp; FX, but ideally a solution would work in Opera/Chrome/Safari too.</p> http://stackoverflow.com/questions/1605946/how-to-enable-activex-in-chrome/1688491#1688491 0 Answer by Keith for How to Enable ActiveX in Chrome? Keith 2009-11-06T15:56:44Z 2009-11-06T16:12:48Z <p>Chrome currently supports only a small subset of ActiveX components entirely on purpose, and it's never going to support them all, and especially lots of random 3rd party propriety ones.</p> <p>Why?</p> <p>Because ActiveX is a mess - it's a huge security hole and all the components can run at a higher security level than the browser.</p> <p>That means that if you let in an ActiveX component it owns your PC - and while many are not malign most are resource hogs. Also if a malign site can't hack your browser it might still be able to hack one of its ActiveXs.</p> <p>This is completely against Chrome's <a href="http://www.google.com/googlebooks/chrome/med%5F26.html" rel="nofollow">sandbox everything and wall off every tab</a> approach - the reason why Chrome is by far the quickest, most secure and most stable browser is the same reason that it currently only supports Flash, Silverlight and one or two more.</p> <p>However, it sounds like you're not really developing a web application anyway - your site in IE is basically a portal to downloading further ActiveX-based applications. Why worry about supporting anything that your DVR clients with their coding teams writing ActiveXs don't?</p> http://stackoverflow.com/questions/1688396/how-can-i-get-at-a-code-file-attachment-in-outlook 1 How can I get at a code file attachment in Outlook? Keith 2009-11-06T15:41:55Z 2009-11-06T15:47:44Z <p>This might be something for <a href="http://superuser.com">superuser</a>, but it's a programmer's problem.</p> <p>If you send a .vb, .cs, .js, or anything else that Outlook thinks is code it blocks it.</p> <p>Not in the way that it does with images where it warns you and lets you override it - it absolutely blocks it.</p> <p>Thing is, as a developer I might want to be able to send and receive code files. I might even know how to read them without executing them :-/</p> <p>There's lots of ways round this for the sender - rename the file, zip it up, use personal mail, etc (all of which should be unnecessary, but never mind).</p> <p>But if someone's sent me a file, and forgotten to change it to spoof the dumb and trivial security in Outlook, is there any way that I can override Outlook's behaviour and access the file? </p> <p>I realise that this is something an Exchange admin can do, but let's assume that role is done in such a way that any change will take years and cost many trees of paperwork.</p> <p>I think the attachment is still buried in the mail - so any way I can get at it?</p> http://stackoverflow.com/questions/1420752/is-double-multiplication-broken-in-net/1667457#1667457 5 Answer by Keith for Is double Multiplication Broken in .NET? Keith 2009-11-03T13:55:37Z 2009-11-03T13:55:37Z <blockquote> <p>And 0.69 can easily be represented in binary, one binary number for 69 and another to denote the position of the <em>decimal</em> place.</p> </blockquote> <p>I think this is a common mistake - you're thinking of floating point numbers as if they are base-10 (i.e decimal - hence my emphasis).</p> <p>So - you're thinking that there are two whole-number parts to this double: <strong>69</strong> and <strong>divide by 100</strong> to get the decimal place to move - which could also be expressed as:<br /> <strong>69 x 10 to the power of -2</strong>.</p> <p>However floats store the 'position of the point' as <em>base-2</em>.</p> <p>Your float actually gets stored as:<br /> <strong>68999999999999995 x 2 to the power of some big negative number</strong></p> <p>This isn't as much of a problem once you're used to it - most people know and expect that 1/3 can't be expressed accurately as a decimal or percentage. It's just that the fractions that can't be expressed in base-2 are different.</p> http://stackoverflow.com/questions/1642458/semi-transparent-background-color-but-not-the-text/1642478#1642478 1 Answer by Keith for semi transparent background color but not the Text Keith 2009-10-29T09:19:34Z 2009-10-29T09:19:34Z <p>Would something like this work?</p> <pre><code>&lt;div class="wrapper" style="position:relative;"&gt; &lt;div class="transparentBG" style="position:absolute;top:0;left:0;"&gt;Text&lt;/div&gt; &lt;div class="overlay" style="position:absolute;top:0;left:0;"&gt;Text&lt;/div&gt; &lt;/div&gt; </code></pre> <p>You can set how the styles change by having ":hover" versions of each class.</p> <p>You'll have fun with multi browser support though.</p> <p>Alternatively you can use two images:</p> <pre><code>&lt;style&gt; .transparentBGOnHover { background-image: url(../images/red.png); } .transparentBGOnHover:hover { background-image: url(../images/transparentRed.png); } &lt;/style&gt; &lt;div class="transparentBGOnHover"&gt; Text &lt;/div&gt; </code></pre> <p>IE6 can't handle the transparent PNG correctly without a DX filter.</p> <p>You may also need to handle the hover via javascript for IE6 and IE7 as they don't support :hover correctly (despite the fact that IE5.5 invented it)</p> http://stackoverflow.com/questions/1560942/runtime-invalidcastexception-with-implicit-cast-operator 2 Runtime InvalidCastException with implicit cast operator Keith 2009-10-13T15:23:43Z 2009-10-13T15:29:25Z <p>I have a C# library that internal clients configure with VB.Net</p> <p>Their scripts are throwing an <code>InvalidCastException</code> where they really shouldn't.</p> <p>So the code is something like this (massively simplified):</p> <pre><code>//C#3 public class Foo { public static implicit operator Foo ( Bar input ) { return new Foo( input.Property1, input.Property2 ); } } </code></pre> <p>Then in their VB.Net (again massively simplified):</p> <pre><code>Dim fc = New FooCollection() Dim b as Bar = GetBar() fc(fooIndex) = b 'throws InvalidCastException at runtime! </code></pre> <p>If I add a breakpoint inside the implicit/widening operator it's never reached.</p> <p>If I remove the implicit operator it won't compile.</p> <p>If I execute the equivalent statement in C#:</p> <pre><code>var fc = new FooCollection(); Bar b = GetBar(); fc[fooIndex] = b //it works! </code></pre> <p>Strange - it looks like the VB.net compiler can find the cast operator but it's lost at runtime. Surely the VB and C# IL will be pretty similar here?</p> <p>The VB.net code is dynamically compiled - the compile happens the first time a user logs into the app. it's being compiled as VB.Net against .Net 3.5, and I'm not using any COM interop.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/38360/can-you-recommend-an-alternative-for-ncover 26 Can you recommend an alternative for NCover? Keith 2008-09-01T20:07:42Z 2009-10-06T19:11:40Z <p>I'm looking for a good .Net code coverage alternative to NCover (insufficient .Net 3.5 coverage and now pay-for) or VSTS (way too expensive).</p> <p>We currently test with NUnit, but could switch to something with a similar 'layout' for its text fixtures if it were better integrated.</p> http://stackoverflow.com/questions/1509737/c-populating-panel-with-controls-from-backgroundworker/1509946#1509946 1 Answer by Keith for C# - Populating Panel with controls from BackgroundWorker Keith 2009-10-02T14:42:14Z 2009-10-02T14:42:14Z <p>You can't create any WinForms UI controls in a background thread.</p> <p>There are a couple of ways around this - I'd start with:</p> <pre><code>Control getPanelForUser( UserStatus friendStatus ) { PictureBox pbTweet = new PictureBox { /* set props */ }; RichTextBox rtbTweet = new RichTextBox { /* set props */ }; Panel panelTweet = new Panel { /* set props */ }; panelTweet.Controls.Add(pbTweet); panelTweet.Controls.Add(rtbTweet); return panelTweet; } </code></pre> <p>Then in your background worker:</p> <pre><code>foreach (UserStatus friendStatus in list) panelMain.BeginInvoke( delegate ( object o ) { panelMain.Controls.Add(getPanelForUser( o as UserStatus )); }, friendStatus ); </code></pre> <p>That might still be slow though - it could be worth loading a subset and then drip feeding further ones in. You could also only load the visible list - hide further ones until they scroll. Then you're only loading a page at a time.</p> http://stackoverflow.com/questions/1492281/asp-net-mvc-request-scoped-global-variable/1492392#1492392 1 Answer by Keith for ASP.net MVC - request-scoped global variable Keith 2009-09-29T13:00:43Z 2009-09-29T13:00:43Z <p>This is relatively easy and there are a couple of ways that you can do it - depending on how your site works.</p> <p>I'm interpreting your request as that you want a property or variable that exists for the duration of the request and is visible to the controller, model and master.</p> <p>A static property is visible to the current <em>application</em> in ASP this means a load of users connecting at once, but not necessarily all of them. IIS will spawn new ASP applications as it needs to.</p> <p>So the ways you can do this:</p> <p>You can have a custom base class for your master page or a code-behind page (as all the WebForms stuff still works)</p> <p>You can have a custom base class for your controllers.</p> <p>You can get to one from the other, so:</p> <pre><code>void Page_Init( object sender, EventArgs e ) { var ctrl = this.ViewContext.Controller as MyBaseController; if ( ctrl != null ) { MyLocalProp = ctrl.PropOnMyController; } } </code></pre> <p>This will then be available in the controller and the master page on a per Request basis.</p> http://stackoverflow.com/questions/1467676/what-if-any-documentation-should-be-written-before-quitting-a-job/1472335#1472335 0 Answer by Keith for What, if any, documentation should be written before quitting a job? Keith 2009-09-24T15:10:30Z 2009-09-24T15:10:30Z <p>Ideally none at all.</p> <p>Why?</p> <p>Well - documentation doesn't really transfer your knowledge all that well. If you're going to do it (and own it) then you should be writing it as you go. It should never be more than a month out of date.</p> <p>If you've got a single month left of your notice there are far better ways to transfer your knowledge. Get whoever's going to be working on it to start <em>now</em>. Then you can mentor them as they learn the system.</p> <p>A month of basically pair-programming/tutoring will teach them an awful lot more than a chunk of docs ever will.</p> <p>If this can't happen, say because you're the only dev and no-one else is going to be available until after you're gone, then that project is dead. By the time somebody finally does look at it they'll bee too late and too detached and they won't have your knowledge to call on.</p> <p>Incidentally even if you don't pair program you should never have developers solely 'own' code. Not only does it create this situation, but it also stops them ever getting promoted (we can't give him the exciting new project, he's the only guy who understands this legacy system). You might be the best dev on a project, but you should never be the only (or only competent) one.</p> <p>Finally, leave your phone number and your flat day rate for consultancy. Tell them you're happy to come back an help at that rate if they need it.</p> http://stackoverflow.com/questions/833883/weird-chrome-prototype-jquery-conflict 3 Weird Chrome prototype/jQuery conflict Keith 2009-05-07T10:27:20Z 2009-09-23T13:41:09Z <p>We have an application with legacy code that relies on prototype, but we've found it to be too 'heavy' for most of the places we want to use it and and have found jQuery to be a better fit for how we work. So we're migrating to jQuery for new functionality.</p> <p>In the meantime we have several pages that need to load both libraries:</p> <pre><code>&lt;script language="javascript" type="text/javascript" src="prototype-1.5.1.2.js"&gt;&lt;/script&gt; &lt;script language="javascript" type="text/javascript" src="jquery-1.3.2.js"&gt;&lt;/script&gt; &lt;script language="javascript" type="text/javascript"&gt; $j = jQuery.noConflict(); &lt;/script&gt; </code></pre> <p>(note older version of prototype, we found issues on upgrading that we don't want to fix when we're phasing it out anyhow)</p> <p>This works in IE6, IE7, IE8-as-7 and FX3, but load it in Chrome and all the jQuery stuff fails.</p> <p>Loading up the developer javascript console displays the following errors:</p> <pre><code>Uncaught Error: NOT_SUPPORTED_ERR: DOM Exception 9 http://.../prototype-1.5.1.2.js (line 1272) Uncaught TypeError: Object #&lt;an Object&gt; has no method 'ready' http://.../lib.js (line 161) Uncaught TypeError: Object #&lt;an Object&gt; has no method 'slideUp' http://.../page.aspx (line 173) ... and so on - all the failures are missing jQuery methods </code></pre> <p>So this looks like a conflict in prototype that causes the creation of the jQuery object to fail. </p> <p>The specific prototype issue appears to be Prototype.BrowserFeatures.XPath being true when it shouldn't be, as XPath document.evaluate isn't supported.</p> <p>Ok, so now <strong>reload the page with the javascript console open - it all works!</strong> WTF? Close the console, reload and it fails again.</p> <p>The failure only occurs when the page load occurs without the javascript console open - why would that make any difference? That looks very much like a bug in Chrome.</p> <p>Anyone able to explain what's going wrong? Why should an error in prototype cause the jQuery init to fail? Why does loading the page with the console open make it work?</p> <p>Anyone know a good workaround? (apart from upgrading to prototype-1.6.0.3.js, which fixes this issue but breaks a load of legacy code elsewhere)</p> http://stackoverflow.com/questions/1464673/ie7-glitches-with-building-tables-cells-dynamically/1465031#1465031 0 Answer by Keith for IE7 glitches with building tables cells dynamically Keith 2009-09-23T09:52:14Z 2009-09-23T09:52:14Z <p>Firstly don't do this in IE6 - your code will be prone to a nasty issue in IE6 called the DOM insertion order bug: <a href="http://msdn.microsoft.com/en-us/library/bb250448%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb250448%28VS.85%29.aspx</a>.</p> <p>Basically in IE6 you can't build up your table and then add it to the page (like any good developer would - why fire extra page layouts?) you have to add the table to the page, then add a row, then add a cell - all top down and forcing a layout each time. Nasty.</p> <p>Your HTML looks like it would render correctly in IE7, so I'd look at the javascript - are you sure that it's producing that HTML in all browsers? For instance <code>document.createElement('td')</code> shouldn't create <code>&lt;TD&gt;</code> tags with unquoted attributes.</p> <p>So either in IE7 (with a plugin) or IE8 (which finally has developer tools) I'd investigate the DOM actually produced.</p> http://stackoverflow.com/questions/1454266/net-catch-general-exceptions/1454309#1454309 6 Answer by Keith for .NET Catch General Exceptions Keith 2009-09-21T12:38:19Z 2009-09-21T12:38:19Z <p>As a general rule you shouldn't catch exceptions unless:</p> <ol> <li><p>You have a specific exception that you can handle and do something about. However in this case you should always check whether you shouldn't be trying to account for and avoid the exception in the first place.</p></li> <li><p>You are at the top level of an application (for instance the UI) and do not want the default behaviour to be presented to the user. For instance you might want an error dialog with a "please send us your logs" style message.</p></li> <li><p>You re-throw the exception after dealing with it somehow, for instance if you roll back a DB transaction.</p></li> </ol> <p>In this example why are you catching all these different types? It seems to me that your code can just be:</p> <pre><code>try { System.Type oType = System.Type.GetTypeFromProgID(customClass); return System.Activator.CreateInstance(oType); } catch (Exception ex) { Log.Error("...." + ex.Message); //the generic catch is always fine if you then do this: throw; } </code></pre> <p>So your problem is an example of rule (3) - you want to log an exception, but then continue and throw it on up.</p> <p>All the different types are there so that in certain cases that you know you can handle (i.e. case 1). For instance suppose that you know that there is an unmanaged call that works around <code>COMException</code> - then your code becomes:</p> <pre><code>try { System.Type oType = System.Type.GetTypeFromProgID(customClass); return System.Activator.CreateInstance(oType); } catch (COMException cex) { //deal with special case: return LoadUnmanaged(); } catch (Exception ex) { Log.Error("...." + ex.Message); //the generic catch is always fine if you then do this: throw; } </code></pre> http://stackoverflow.com/questions/1443964/am-i-getting-left-behind-by-not-using-the-new-features-of-the-net-framework-ne/1445171#1445171 1 Answer by Keith for Am I getting left behind by not using the new features of the .NET framework (.NET 3.0 & 3.5)? Keith 2009-09-18T15:12:09Z 2009-09-18T15:12:09Z <p>Not really, but...</p> <p>Software development is a career that's all about constant learning. We're like knowledge sharks and the job gets dull quick if there isn't something new.</p> <p>In terms of jobs right now a C#3.5 expert is worth more than a C#2 one. Devs with cutting edge experience mostly earn more than those without (up to a point - you can earn serious money working in decrepit tech cause no-one else wants to, just look at COBOL). </p> <p>That shouldn't influence you if you're happy doing what you doing and there's new and interesting challenges for you every day in what you're doing now.</p> <p>Don't worry about the new stuff - when you get to it dive right in and you'll figure it all out soon enough. It's always harder to learn about things in abstract than when you're trying to make them work.</p> http://stackoverflow.com/questions/1443160/difference-between-rest-and-webservices/1443211#1443211 5 Answer by Keith for Difference between REST and WebServices Keith 2009-09-18T08:27:13Z 2009-09-18T08:27:13Z <p>SOAP is a protocol for sending/receiving data over HTTP as XML.</p> <p>A typical WebService will be a few methods an WSDL that describes how to call it. There's no real convention for how these should be structured, so you always need lots of API documentation.</p> <p>Typically this will be something like (for .net):</p> <ul> <li>Http POST to <em>mysite.com/products.asmx/ListAllProducts</em> - returns XML list of products</li> <li>Http POST to <em>mysite.com/products.asmx/GetProduct</em> - returns XML for product based on SOAP XML in the posted content </li> <li>Http POST to <em>mysite.com/products.asmx/UpdateProduct</em> - changes product based on SOAP XML in the posted content </li> </ul> <p>REST is more of a convention for structuring all of your methods:</p> <ul> <li>Http GET from <em>mysite.com/products</em> - returns XML or JSON listing all products</li> <li>Http GET from <em>mysite.com/products/14</em> - returns XML or JSON for product 14</li> <li>Http POST to <em>mysite.com/products/14</em> - changes product 14 to what you post in the HTML form.</li> </ul> <p>So REST works more like you'd expect browser URLs to. In that way it's more natural and as a convention is much easier to understand. All REST APIs work in a similar way, so you don't spend as long learning the quirks of each system.</p> <p>REST goes further, so ideally the following would work:</p> <ul> <li>Http DELETE to <em>mysite.com/products/14</em> - removes product 14</li> <li>Http PUT to <em>mysite.com/products</em> - adds a new product</li> </ul> <p>Unfortunately the majority of browsers don't implement these HTTP verbs, so you have to rely on GET and POST for now.</p> http://stackoverflow.com/questions/1858470/technology-choice-for-redesigning-an-old-visualbasic-application/1858521#1858521 Comment by Keith on Technology choice for redesigning an old VisualBasic-Application Keith 2009-12-08T11:13:49Z 2009-12-08T11:13:49Z Hmm - as a development manager what I'd want to know at interview would be that you understood when best to use C# and when to use VB.Net - I don't care which one you have on your CV if you understand how .Net works. C# is more commonly used, but VB.Net is currently <i>much</i> better suited to any kind of interop. The answer: &quot;We used C# because it was prettier/more fun/looks better on my CV&quot; when your project needed a lot of interop would lose you points at interview. http://stackoverflow.com/questions/268538/tab-versus-space-indentation-in-c/520662#520662 Comment by Keith on Tab versus space indentation in C# Keith 2009-12-03T13:57:20Z 2009-12-03T13:57:20Z Basically yeah - either everyone uses tabs or everyone uses spaces. Otherwise merges get ugly. You have to agree with everyone and use the same settings. Once you have, for any user, if they hit Ctrl+K,D it will fix all the formatting to be your standardised style. http://stackoverflow.com/questions/87542/making-wcf-easier-to-configure/1834211#1834211 Comment by Keith on Making WCF easier to configure Keith 2009-12-02T16:47:10Z 2009-12-02T16:47:10Z I've also blogged on why this has changed: <a href="http://bizvprog.blogspot.com/2009/11/giving-up-on-soap-for-good.html" rel="nofollow">bizvprog.blogspot.com/2009/11/&hellip;</a> http://stackoverflow.com/questions/1820007/ie7-float-right-problems/1820018#1820018 Comment by Keith on IE7 float right problems Keith 2009-11-30T14:18:05Z 2009-11-30T14:18:05Z IE6 and 7 both do this, and it's caused by their stunningly creaky layout engine - it was never built with CSS in mind and it still shows, even in IE8. The 2nd option here (put the float:right element first) is probably the most commonly seen. http://stackoverflow.com/questions/1735560/stop-the-browser-throbber-of-doom-while-loading-comet-server-push-xmlhttpreques/1788777#1788777 Comment by Keith on Stop the browser “throbber of doom” while loading comet/server push XMLHttpRequest Keith 2009-11-25T14:40:43Z 2009-11-25T14:40:43Z Cheers - on the progress I think the significant difference is that a user click has initiated a new process, rather than the page load (which is why sometimes the wait works). Actually I'd like to see better support for async events - perhaps the browser should show something more consistently when the user initiates something with an <code>XMLHttpRequest</code>. That way there wouldn't be 1000nds of different spinners on different sites and fewer sites that appeared to do nothing on a click and then load extra content after a few seconds. http://stackoverflow.com/questions/1605946/how-to-enable-activex-in-chrome/1688491#1688491 Comment by Keith on How to Enable ActiveX in Chrome? Keith 2009-11-07T12:21:22Z 2009-11-07T12:21:22Z They have taken the NPAPI standard - although I understood that the're adding extensions to it. I know Chrome's not a VM, but it's a hell of a lot more secure than ActiveX. I didn't know that it supports all NPAPI plug-ins, I thought it was just a subset. Google's current problem is that they need the plug-in developers to make changes to give Chrome more control of how it isolates the plug-ins. My point is that a set of NPAPI clothes for an ActiveX might make it work, but it's going to be messy, and lots of work. What's the benefit for you? Why support Chrome at all? http://stackoverflow.com/questions/1688396/how-can-i-get-at-a-code-file-attachment-in-outlook Comment by Keith on How can I get at a code file attachment in Outlook? Keith 2009-11-06T16:36:12Z 2009-11-06T16:36:12Z 2007, but it's done it since 2000 I think http://stackoverflow.com/questions/1605946/how-to-enable-activex-in-chrome/1687159#1687159 Comment by Keith on How to Enable ActiveX in Chrome? Keith 2009-11-06T16:18:57Z 2009-11-06T16:18:57Z Wow - that's like Chrome Frame in reverse. In this case why use Chrome at all - you'd just lose the piles of stuff from IE without gaining any performance. http://stackoverflow.com/questions/1593174/wrong-extraction-of-attrhref-in-ie7-vs-all-other-browsers Comment by Keith on Wrong extraction of .attr("href") in IE7 vs all other browsers? Keith 2009-10-20T08:34:33Z 2009-10-20T08:34:33Z It's a little bit of both - IE7 is inconsistent, but jQuery should still handle it. http://stackoverflow.com/questions/1560942/runtime-invalidcastexception-with-implicit-cast-operator/1560984#1560984 Comment by Keith on Runtime InvalidCastException with implicit cast operator Keith 2009-10-14T07:22:37Z 2009-10-14T07:22:37Z <code>IConvertible</code> does all the system value type conversions. I thought that in VB.Net you could do <code>Public Shared Widening Operator CType(ByVal input As Bar) As Foo</code> and it would be the same as the <code>public static implicit operator Foo ( Bar input )</code> http://stackoverflow.com/questions/771679/which-job-c-or-asp-net-c/773057#773057 Comment by Keith on Which job? C or ASP.NET/C#? Keith 2009-10-13T13:58:45Z 2009-10-13T13:58:45Z I disagree about the C being more challenging bit - it's just that the challenges are different. C# has predefined tools (hammer, drill, crane, etc) so you just get on with building your skyscraper or whatever. C can have any tools you want, so if you want to build something highly specialised like a nuclear power station you can, but it will take the same time as several skyscrapers in C#. Neither is quite as simplified as Lego. http://stackoverflow.com/questions/1498293/net-mvc-instantiate-controller-inside-another-controller Comment by Keith on .NET MVC instantiate controller inside another controller Keith 2009-10-08T11:53:33Z 2009-10-08T11:53:33Z I've done something very similar to this that worked fine - the model should be passed correctly, so what is it about the context that's a problem? http://stackoverflow.com/questions/24680/using-subversion-with-vb6/25035#25035 Comment by Keith on Using Subversion with VB6 Keith 2009-10-07T09:59:28Z 2009-10-07T09:59:28Z Why the -1 vote? Not sure why this was unhelpful - especially as the downvote is more than a year after the answer :-/ http://stackoverflow.com/questions/1443160/difference-between-rest-and-webservices Comment by Keith on Difference between REST and WebServices Keith 2009-10-06T08:10:16Z 2009-10-06T08:10:16Z There are potential duplicates of this - REST vs SOAP seems to be a common question (via @John Saunders, good point but rolled back because the comment was made in an edit). While the topic is duplicated I think this question will come up on searches where the others will not, so the question should stay open. http://stackoverflow.com/questions/1516536/c-paging-like-123-6789 Comment by Keith on c# paging like 123....6789 Keith 2009-10-04T14:32:36Z 2009-10-04T14:32:36Z So, what's the question?