User Mike Brown - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T23:21:26Z http://stackoverflow.com/feeds/user/14359 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1627919/ux-how-to-present-a-directory-file-structure-with-videos/1629821#1629821 1 Answer by Mike Brown for UX: How to present a directory/file structure with videos? Mike Brown 2009-10-27T10:13:20Z 2009-10-27T10:13:20Z <p>I would argue that the simplest approach would be to use the design most are familiar with: a treeview on the left for folders with a collection of thumbnails for the current folder on the right. In addition for video, you could make the thumbnail play (either the video in its entirety or a small representative clip) when the user selects it.</p> <p>There's nothing wrong with leveraging design that already works. It makes your application more approachable for new users and thus increases your attach rate.</p> <p>Look at Infragistics' Quince app for more UI Patterns. In addition, there is Jennifer Tidwell's book "Designing interfaces" that provides a great reference.</p> http://stackoverflow.com/questions/1483652/wpf-combobox-binding-behaviour/1527990#1527990 1 Answer by Mike Brown for WPF ComboBox binding behaviour Mike Brown 2009-10-06T20:39:04Z 2009-10-09T20:37:46Z <p>What you want to do is expose separate properties on your ViewModel for the currently selected product and currently selected product number. When the selected product is changed, update the product number and vice versa. So your viewmodel should look something like this</p> <pre><code>public class MyViewModel:INotifyPropertyChanged { private Product _SelectedProduct; public Product SelectedProduct { get { return _SelectedProduct; } set { _SelectedProduct = value; PropertyChanged(this, new PropertyChangedEventArgs("SelectedProduct")); _SelectedProductID = _SelectedProduct.ID; PropertyChanged(this, new PropertyChangedEventArgs("SelectedProductID")); } } private int _SelectedProductID; public int SelectedProductID { get { return _SelectedProductID; } set { _SelectedProductID = value; PropertyChanged(this, new PropertyChangedEventArgs("SelectedProductID")); _SelectedProduct = _AvailableProducts.FirstOrDefault(p =&gt; p.ID == value); PropertyChanged(this,new PropertyChangedEventArgs("SelectedProduct")); } } private IEnumerable&lt;Product&gt; _AvailableProducts = GetAvailableProducts(); private static IEnumerable&lt;Product&gt; GetAvailableProducts() { return new List&lt;Product&gt; { new Product{ID=1, ProductName = "Coke"}, new Product{ID = 2, ProductName="Sprite"}, new Product{ID = 3, ProductName = "Vault"}, new Product{ID=4, ProductName = "Barq's"} }; } public IEnumerable&lt;Product&gt; AvailableProducts { get { return _AvailableProducts; } } private Customer _SelectedCustomer; public Customer SelectedCustomer { get { return _SelectedCustomer; } set { _SelectedCustomer = value; PropertyChanged(this, new PropertyChangedEventArgs("SelectedCustomer")); SelectedProduct = value.FavoriteProduct; } } public event PropertyChangedEventHandler PropertyChanged; } </code></pre> <p>So now your XAML binds to the appropriate properties and the viewModel is responsible for syncrhronization</p> <pre><code>&lt;TextBox x:Name="MyTextBox" Text="{Binding Path=SelectedProductID, UpdateSourceTrigger=PropertyChanged}" /&gt; &lt;ComboBox x:Name="MyComboBox" ItemsSource="{Binding AvailableProducts}" DisplayMemberPath="ProductName" SelectedItem="{Binding SelectedProduct}" /&gt; </code></pre> <p>Don't forget to implement the rest of INotifyPropertyChanged and the GetAvailableProducts function. Also there may be some errors. I hand typed this here instead of using VS but you should get the general idea.</p> http://stackoverflow.com/questions/328600/how-do-you-do-a-sql-style-in-statement-in-linq-to-entities-entity-framework-i/1512046#1512046 0 Answer by Mike Brown for How do you do a SQL style 'IN' statement in LINQ to Entities (Entity Framework) if Contains isn't supported? Mike Brown 2009-10-02T22:12:52Z 2009-10-02T22:12:52Z <p>Someone had created an expression for this scenario...I found it and hijacked it but can't remember where I found the original source. I'll post the code in a bit. For now this is a marker for me to come back.</p> http://stackoverflow.com/questions/1511421/how-do-i-get-a-list-of-integers-that-exist-in-one-collection-but-not-in-another/1511466#1511466 0 Answer by Mike Brown for How do I get a list of integers that exist in one collection, but not in another of a different type using LINQ? Mike Brown 2009-10-02T19:50:32Z 2009-10-02T19:50:32Z <p>Project the values of the Records collection into a list of Int and use the except function (returns the values in one collection that are not in the other)</p> <pre><code>var difference = _currentKeys.Except(records.Select(r=&gt;r.ID) </code></pre> http://stackoverflow.com/questions/1399726/mtom-xop-implementation-for-net-remoting/1399795#1399795 0 Answer by Mike Brown for MTOM/XOP implementation for .net remoting Mike Brown 2009-09-09T13:49:10Z 2009-09-09T13:49:10Z <p>I believe that the Java Equivalent of WCF (Metro) supports XOP/MTOM, and it is open source. You could take that code and port it to .NET Remoting.</p> http://stackoverflow.com/questions/1380228/tables-from-two-different-databases-in-a-dbml/1380280#1380280 0 Answer by Mike Brown for Tables from two different databases in a DBML? Mike Brown 2009-09-04T16:26:27Z 2009-09-04T16:26:27Z <p>Another option is to create a server link on on database that points to the other and make aliases to the remote tables from the "local" DB. I believe then you'd be able to reference them as if they were all in the same database.</p> http://stackoverflow.com/questions/1377184/how-to-hand-over-a-project-systematically/1378987#1378987 0 Answer by Mike Brown for How to hand over a project systematically? Mike Brown 2009-09-04T12:40:35Z 2009-09-04T12:40:35Z <p>Check out <a href="http://rads.stackoverflow.com/amzn/click/0735618798" rel="nofollow">"Software Requirements"</a> and <a href="http://rads.stackoverflow.com/amzn/click/0735623988" rel="nofollow">Software Requirement Patterns</a> for ideas on questions to ask when gathering information about a project. I think that just as they would work for new development, they would also help you to come to terms with an existing project.</p> http://stackoverflow.com/questions/1376819/can-you-consume-xml-from-access/1377193#1377193 0 Answer by Mike Brown for Can you consume xml from access? Mike Brown 2009-09-04T04:13:46Z 2009-09-04T04:13:46Z <p>Access as of the 2003 version has full support of web services. There is a wizard that you can use to point at a web service definition and generate an access database and forms to access it.</p> <p>Here is a tutorial for <a href="http://www.databasejournal.com/features/msaccess/article.php/3567511/Consume-Web-Service-from-Access.htm" rel="nofollow">consuming web services</a></p> http://stackoverflow.com/questions/1375893/what-are-the-key-qualities-of-an-software-engineer/1375912#1375912 2 Answer by Mike Brown for What are the key qualities of an Software Engineer ? Mike Brown 2009-09-03T20:56:38Z 2009-09-03T20:56:38Z <p>I would say that the most important quality of a Software Engineer is continual self-improvement. Our industry is constantly evolving (not just new languages/frameworks/platforms but also new techniques), and if you're not committed to learn continuously, you are committed to obsolescence.</p> http://stackoverflow.com/questions/1375822/when-exposing-iqueryable-when-does-datacontext-get-disposed/1375884#1375884 0 Answer by Mike Brown for When exposing IQueryable when does DataContext get disposed? Mike Brown 2009-09-03T20:51:37Z 2009-09-03T20:51:37Z <p>Make your repository implement IDisposable (and Dispose of the DataContext when the repository is Disposed). Now the API for your repository is something like</p> <pre><code>using (var repository=new MyRepository) //or use a ServiceLocator or Factory { var myObjects = repository.FetchAll().Where(obj=&gt;obj.Foo == "bar"); //do something with myObjects } </code></pre> <p>And now your repository will properly dispose of your DataContext and all is well in the world.</p> http://stackoverflow.com/questions/1375800/detaching-object-from-context-in-entity/1375840#1375840 2 Answer by Mike Brown for Detaching object from context in entity Mike Brown 2009-09-03T20:44:00Z 2009-09-03T20:44:00Z <p>Instead of storing the entire entity in the Session, just use the ID and retrieve it on the next page. Embracing the statelessness of the web helps you maintain your sanity.</p> <p>If you must store the entire entity, keep the Detach but when you start your new operation remember to Attach it to the new ObjectContext.</p> http://stackoverflow.com/questions/1375753/multiple-language-ide/1375787#1375787 2 Answer by Mike Brown for Multiple Language IDE Mike Brown 2009-09-03T20:33:27Z 2009-09-03T20:33:27Z <p>I would recommend Eclipse as the closest match for the multi-language requirements. There are IDEs that possibly shine better for a given language (e.g. I prefer IntelliJ for Java), but none that have such a broad coverage of multiple languages.</p> <p>As far as memory/bloat, it's a price you pay for the convenience that an IDE provides.</p> http://stackoverflow.com/questions/1375666/net-click-once-smart-client-applications-browser-cookie-equivalent/1375698#1375698 1 Answer by Mike Brown for .NET - Click-Once / Smart Client Applications - Browser Cookie Equivalent? Mike Brown 2009-09-03T20:16:42Z 2009-09-03T20:16:42Z <p>Better than cookies, you can use the <a href="http://blogs.msdn.com/shawnfa/archive/2006/01/18/514407.aspx" rel="nofollow">Isolated Storage API</a> to store files on the client machine.</p> http://stackoverflow.com/questions/1375512/informing-parent-when-child-changes-a-property-value/1375610#1375610 0 Answer by Mike Brown for informing parent when child changes a property value Mike Brown 2009-09-03T19:55:17Z 2009-09-03T20:12:46Z <p>One option is to create a base control (let's call it CalendarPrimitive) to store the CurrentMonthProperty. When you register the property register with FrameworkPropertyMetadataOptions.Inherit.</p> <p>If you derive CalendarHeaderControl and CalendarMonth control from the CalendarPrimitive, the value will automatically pass down the tree from CalendarHeader to CalendarMonth (assuming that CalendarMonth is nested within CalendarHeader).</p> <p>Even better if your top level Calendar control also derives from CalendarPrimitive, It will be responsible for storing the CurrentMonthProperty and all of its Children will inherit the value.</p> <p>Also, you probably want to define a CurrentMonthChanged RoutedEvent that a CalendarPrimitive can use to notify it's the top level that it has changed the CurrentMonth.</p> <p>Your top level Calendar will listen for this Event and change its CurrentMonth accordingly (propagating the change down the tree).</p> http://stackoverflow.com/questions/1330305/firstordefault-type-error-on-return/1338586#1338586 3 Answer by Mike Brown for FirstOrDefault() type error on return? Mike Brown 2009-08-27T02:37:58Z 2009-08-27T02:37:58Z <p>Here is a good opportunity for the <a href="http://www.cs.oberlin.edu/~jwalker/nullObjPattern/" rel="nofollow">Null Object Pattern</a> For an example of it think of Double.NaN as a default value. </p> <p>Changing the Domain service function as follows</p> <pre><code>public virtual CmsDealer GetCmsDealer(string id) { return this.Context.CmsDealerSet.FirstOrDefault(p =&gt; p.Id == id)?? CmsDealer.NullValue; } </code></pre> <p>Allows you to have a valid value in the WCF service and perform the check on the client</p> http://stackoverflow.com/questions/1337875/consufed-about-references-in-objects/1337920#1337920 0 Answer by Mike Brown for Consufed about references in objects Mike Brown 2009-08-26T22:34:50Z 2009-08-26T22:34:50Z <p>The Address.Person value is explicitly set in your code when you call AddAddress</p> <pre><code>public void AddAddress(Address address) { _addresses.Add(address); address.Person = this; } </code></pre> <p>No where in your code do you remove the reference when you remove the value from the list. In fact if you were to call Person.Addresses.Count, you'd see that it thinks there are more Addresses in it than there actually are (because you set the value to null instead of calling Person.Addresses.Remove(0);</p> http://stackoverflow.com/questions/1337859/when-should-i-use-eval-taking-a-string-and-executing-it-as-code-at-runtime/1337891#1337891 2 Answer by Mike Brown for When should I use eval (taking a string and executing it as code at runtime)? Mike Brown 2009-08-26T22:28:48Z 2009-08-26T22:28:48Z <p>The pitfall of eval is the same that comes with SQL injection. If you're constructing the string dynamically in your code and calling eval on that fine. But if your code is blindly concatenating user input into a string to be eval'd then you're asking for it. There are numerous cases where eval can be useful but people tend to avoid it because there are other ways to work around the need for an eval.</p> http://stackoverflow.com/questions/1337565/avoiding-if-statements/1337809#1337809 0 Answer by Mike Brown for avoiding if statements Mike Brown 2009-08-26T22:08:43Z 2009-08-26T22:08:43Z <p>Have a look at <a href="http://www.antiifcampaign.com/index.html" rel="nofollow">the Anti-If Campaign</a> The idea is not to replace every single if in your application with the Strategy or State Pattern. The idea is that when you have complex branching logic especially based on something like an enumeration, you should look to refactoring to the Strategy Pattern.</p> <p>And that case you can remove the if all together by using a Factory. Here is a relatively straightforward example. Of course as I said in a real case, the logic in your strategies would be a bit more complex than just printing out "I'm Active".</p> <pre><code>public enum WorkflowState { Ready, Active, Complete } public interface IWorkflowStrategy { void Execute(); } public class ActiveWorkflowStrategy:IWorkflowStrategy { public void Execute() { Console.WriteLine("The Workflow is Active"); } } public class ReadyWorkflowStrategy:IWorkflowStrategy { public void Execute() { Console.WriteLine("The Workflow is Ready"); } } public class CompleteWorkflowStrategy:IWorkflowStrategy { public void Execute() { Console.WriteLine("The Workflow is Complete"); } } public class WorkflowStrategyFactory { private static Dictionary&lt;WorkflowState, IWorkflowStrategy&gt; _Strategies= new Dictionary&lt;WorkflowState, IWorkflowStrategy&gt;(); public WorkflowStrategyFactory() { _Strategies[WorkflowState.Ready]=new ReadyWorkflowStrategy(); _Strategies[WorkflowState.Active]= new ActiveWorkflowStrategy(); _Strategies[WorkflowState.Complete = new CompleteWorkflowStrategy(); } public IWorkflowStrategy GetStrategy(WorkflowState state) { return _Strategies[state]; } } public class Workflow { public Workflow(WorkflowState state) { CurrentState = state; } public WorkflowState CurrentState { get; set; } } public class WorkflowEngine { static void Main(string[] args) { var factory = new WorkflowStrategyFactory(); var workflows = new List&lt;Workflow&gt; { new Workflow(WorkflowState.Active), new Workflow(WorkflowState.Complete), new Workflow(WorkflowState.Ready) }; foreach (var workflow in workflows) { factory.GetStrategy(workflow.CurrentState). Execute(); } } } </code></pre> http://stackoverflow.com/questions/1089329/how-can-i-forms-authenticate-a-user-in-a-custom-webservice/1092552#1092552 0 Answer by Mike Brown for How can I forms authenticate a user in a custom webservice? Mike Brown 2009-07-07T14:05:04Z 2009-07-07T14:15:17Z <p>The solution is simple. Just create a custom membership provider that calls your custom code. See <a href="http://msdn.microsoft.com/en-us/library/f1kyba5e.aspx" rel="nofollow">this article on MSDN library</a> for more information. There are also full samples available on <a href="http://www.15seconds.com/issue/050216.htm" rel="nofollow">15 seconds</a> and a <a href="http://www.asp.net/learn/videos/video-189.aspx" rel="nofollow">walkthrough video on the ASP.NET website</a>. Finally, it appears <a href="http://weblogs.asp.net/scottgu/archive/2006/04/13/442772.aspx" rel="nofollow">Microsoft has released the source</a> for the built-in Membership Provider</p> http://stackoverflow.com/questions/435025/building-a-wpf-ui-on-a-workerthread/941583#941583 0 Answer by Mike Brown for Building a WPF UI on a workerthread? Mike Brown 2009-06-02T19:58:58Z 2009-06-02T19:58:58Z <p>Is there a reason why you HAVE to build it in code? If it's because the grid is dynamic (I.E. columns aren't known until run time), there are ways around it.</p> <p>What is the precise problem that's requiring you to create the UI in code? Once we know that we can generalize it to templates and binding.</p> <p>Anyway, to address your immediate question you can shuttle work to a worker thread and have it update the UI using the Dispatcher as the others have mentioned. I'd also like to point out that it's best to break down your work into fine grained units...so for example if you are creating UI for each individual column on each item in a list you should break it down at the least on the item level, preferably on the column level.</p> <p>If you're using a GOOD grid, it probably uses virtualization and has an API for you to hook into the virtualizing events. (Essentially the grid only builds the UI as it needs it or request UI elements as it needs them). This allows you to avoid building the ENTIRE grid upon load.</p> http://stackoverflow.com/questions/832448/restarting-a-wpf-storyboard/912544#912544 0 Answer by Mike Brown for Restarting a WPF Storyboard Mike Brown 2009-05-26T20:23:20Z 2009-05-26T20:23:20Z <p>Sorry Scott, I wasn't paying attention. Did you try to set the FillBehavior on the Storyboard. Set the FillBehavior to Stop resets the animation. Not sure why Stop doesn't do it though...</p> http://stackoverflow.com/questions/746767/how-to-acheive-the-c-as-keyword-for-value-types-in-vb-net/746842#746842 0 Answer by Mike Brown for How to acheive the C# 'as' keyword for value types in vb.net? Mike Brown 2009-04-14T09:18:53Z 2009-04-14T09:18:53Z <p>According to the docs TryCast only works with reference types. Regardless, the problem might be more with your usage of the IDataReader than trycast.</p> <p>Before looping over the rows in the IDataReader, get the ordinal values of the column names and use the strongly typed GetX methods to retrieve the field values like so</p> <pre><code>Dim name As Integer = oReader.GetOrdinal("Name") Dim value as Integer = oReader.GetOrdinal("Value") While reader.Read() oObject.Name = if(oReader.IsDbNull(name), string.Empty, oReader.GetString(name)) oObject.Value = if(oReader.IsDbNull(value), -1, oReader.GetInt32(value) End While ' Call Close when done reading. oReader.Close() </code></pre> <p>Using the if operator with 3 parameters like so makes it work like the C# ternary boolean operator eval?trueExpression:falseExpression</p> <p>This should help you with your issue.</p> http://stackoverflow.com/questions/434464/what-do-you-do-to-take-breaks-from-programming/468218#468218 0 Answer by Mike Brown for What do you do to take breaks from programming? Mike Brown 2009-01-22T06:29:45Z 2009-01-22T06:29:45Z <p>Speaking of pranks, I had fun with an annoyotron from ThinkGeek. There were about 16 people within hearing range of it because of acoustics. Took half a day before it was uncovered.</p> <p>Which brings me to how I got the annoyotron. I was recently inspired to learn guitar because of rock band. So I purchased an iAxe USB guitar from think geek. Also picked up the Hal Leonard Guitar Method pack...you would have thought I single-handedly programmed an autonomous vehicle from my excitement when I learned to play a simple melody on the first string.</p> http://stackoverflow.com/questions/377323/openid-on-community-server 3 OpenID on Community Server Mike Brown 2008-12-18T09:23:52Z 2008-12-23T20:17:51Z <p>Okay, I've asked on the Community Server Forums and was totally ignored. So I'll ask here. The OpenID provider (presumably janrain) for CommunityServer does not work with an SSL OpenID endpoint. I really don't know of a non SSL OpenID endpoint and even if I did...I'm not sure if I'd want to use it.</p> <p>I have a community server installation and all of my users are complaining that the signup/login form appears to support openid but doesn't in reality. has anyone encountered this issue and addressed it?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/331765/how-can-i-integrate-perl-with-asp-net-webforms 0 How can I integrate Perl with ASP.NET Webforms? Mike Brown 2008-12-01T18:39:12Z 2008-12-01T20:57:31Z <p>I want to integrate some existing Perl code with ASP.NET. I see plenty examples of accessing Perl from .NET but nothing on the reverse. Has anyone had any experience attempting to do this or does everyone just recreate their existing Perl functionality in one fell swoop?</p> <p>For more detail, I have some functionality already implemented in Perl that we want to integrate with a larger portal that we implemented in ASP.NET webforms. Rather than re-implementing the existing functionality in .NET, we want to have some pages of the portal render through Perl (allowing it to access WebForm session information without having to put it into a cookie). Going forward, all new code and updates to the Perl code will be implemented in .NET on a case by case basis.</p> http://stackoverflow.com/questions/322542/feeling-trapped-to-the-job/322567#322567 1 Answer by Mike Brown for Feeling trapped to the job Mike Brown 2008-11-26T23:52:16Z 2008-11-26T23:52:16Z <p>I would say that what's more important is that you focus on developing yourself. Get involved in your local developer community. Find a mentor (since one isn't available at your job) or two and learn as much as possible. Focus on developing your personal brand. Start a blog. Don't worry about how popular it is, just start writing. Commit to posting something once a week. Eventually, you'll find yourself posting more regularly.</p> <p>Get on the forums and find questions you can answer. Then start finding questions that you can't answer but are willing to search for the answer.</p> <p>All of this serves a dual purpose. First you'll be learning and growing personally. Second, you will begin establishing a presence within the community, and forming a network. Eventually, should you decide that you've outgrown what your current employer has to offer, you will be able to tap your network to find a position that will offer you more growth.</p> <p>I would say that "loyalty" is the wrong reason to stay with a company. But don't burn your bridges either. Make sure that your exit is as amicable and gracious as possible.</p> http://stackoverflow.com/questions/317749/passing-master-page-form-data-to-another-webform/317765#317765 1 Answer by Mike Brown for Passing master page form data to another webform Mike Brown 2008-11-25T15:45:24Z 2008-11-25T15:45:24Z <p>You can have multiple forms in one page I believe. So one form (your search form) would have its action set to search.aspx and the other would be set for the page itself.</p> http://stackoverflow.com/questions/280037/what-is-a-cloud-os/296037#296037 1 Answer by Mike Brown for What is a "Cloud OS"? Mike Brown 2008-11-17T16:22:09Z 2008-11-17T16:22:09Z <p>When Microsoft says Azure is a Cloud OS, what they mean is that it provides the same kind of services to developers targeting the "Cloud" abstractions that are akin to what a Desktop OS provides developers targeting desktop.</p> <p>Amitabh Srivistava gave a great interview on Channel 9 explaining it. Basically, if you want to write a notepad application for a desktop user, you don't have to be concerned with writing code that interprets key strokes from the keyboard, or that sets up communications with a printer. This is due to the desktop os. Similarly, Azure lets a developer focus on their cloud app better by abstracting things like load balancing, authentication and authorization, failover, and a lot of concerns that one would normally have to address when developing for the Cloud.</p> http://stackoverflow.com/questions/276152/using-vs-2008-vb-net-i-need-to-create-an-object-i-can-use-in-classic-asp-with-c/276161#276161 1 Answer by Mike Brown for Using VS 2008 (vb.net) I need to create an object I can use in Classic ASP with CreateObject Mike Brown 2008-11-09T17:23:36Z 2008-11-09T17:23:36Z <p>You have to go to your class library properties and select the option "Register for COM interop". This will make your assembly available to COM.</p> http://stackoverflow.com/questions/257296/is-a-bachelors-degree-good-enough-for-someone-to-become-an-architect/257678#257678 1 Answer by Mike Brown for Is a bachelor's degree good enough for someone to become an architect? Mike Brown 2008-11-03T01:00:33Z 2008-11-03T01:00:33Z <p>This may be somewhat biased since I don't have <strong>any</strong> degree. I truly think that the skills required to be a good architect are skills that need to be learned in the field and not taught in a classroom.</p> <p>A good architect has to have knowledge of many more areas of IT than just software development because they are responsible for designing a solution that has to be:</p> <ol> <li><strong>Ecosystem friendly</strong>: very few applications are deployed into a clean environment. There are other applications with which a solution needs to play nicely.</li> <li><strong>Opportunistic</strong>: the best code is code that doesn't need to be written. As an architect, one should always look for ways to take advantage of existing systems and commercial off the shelf software.</li> <li><strong>Forward looking</strong>: as an architect, one should always attempt to design a solution that takes advantage of existing tech. When possible, he should also try to design in such a way that the solution can easily be adapted to future technology that will be beneficial.</li> <li><strong>Easy to Administer</strong> the IT team has to deploy and manage the solutions created by an architect. He must design his solutions in such a way that they are deployable and manageable by tools that are familiar to the IT team.</li> </ol> <p>And that's just the tip of the iceberg. None of the knowledge to create applications that address those four metrics are taught in school. Even if they were, these skills are something that can be learned through experience. I'd argue that aptitude and experience are more important than degrees in selection of an architect.</p> http://stackoverflow.com/questions/507343/using-git-with-visual-studio/507468#507468 Comment by Mike Brown on Using Git with Visual Studio Mike Brown 2009-10-24T18:12:49Z 2009-10-24T18:12:49Z Just curious, but why would you want it to ignore your project file? http://stackoverflow.com/questions/1483652/wpf-combobox-binding-behaviour Comment by Mike Brown on WPF ComboBox binding behaviour Mike Brown 2009-10-09T20:36:24Z 2009-10-09T20:36:24Z Your new solution is perfectly valid (in fact it avoids repeating information which is great). What's odd to me however is you still receiving a stack overflow. I put the code into VS and it runs just fine for me. Not sure what's going wrong on your side. Is your change to selectedcustomer.favoriteproduct also prompting an update to the other two properties? Either way, I've updated my sample code with the version that Works On My Machine (TM) http://stackoverflow.com/questions/1483652/wpf-combobox-binding-behaviour Comment by Mike Brown on WPF ComboBox binding behaviour Mike Brown 2009-10-07T12:37:50Z 2009-10-07T12:37:50Z Mistake was on me...I updated my answer with the correct code. http://stackoverflow.com/questions/1483652/wpf-combobox-binding-behaviour/1527990#1527990 Comment by Mike Brown on WPF ComboBox binding behaviour Mike Brown 2009-10-07T12:35:40Z 2009-10-07T12:35:40Z Okay done...that should work for you now...they should add a special badge for answers that result in stack overflows ;) http://stackoverflow.com/questions/1483652/wpf-combobox-binding-behaviour/1527990#1527990 Comment by Mike Brown on WPF ComboBox binding behaviour Mike Brown 2009-10-07T12:32:57Z 2009-10-07T12:32:57Z Sorry that was boneheaded of me...rather than updating the opposite property just update the backing field and call property changed...I'll update the code with the correct implementation. http://stackoverflow.com/questions/1375512/informing-parent-when-child-changes-a-property-value/1375610#1375610 Comment by Mike Brown on informing parent when child changes a property value Mike Brown 2009-09-09T13:42:25Z 2009-09-09T13:42:25Z Sheraz, you can pass the CurrentMonth in your routed event args. That way, you can just look there for your new value. http://stackoverflow.com/questions/1376819/can-you-consume-xml-from-access/1377193#1377193 Comment by Mike Brown on Can you consume xml from access? Mike Brown 2009-09-04T12:57:36Z 2009-09-04T12:57:36Z @Tony, 4 years and 7 years are equivalent to him I guess. Either way, it's a moot point when the tutorial was written because it tells the OP how to do what he wants to do. http://stackoverflow.com/questions/1375822/when-exposing-iqueryable-when-does-datacontext-get-disposed/1375884#1375884 Comment by Mike Brown on When exposing IQueryable when does DataContext get disposed? Mike Brown 2009-09-04T12:52:44Z 2009-09-04T12:52:44Z Looks like it's a moot point. But making your repository Disposable allows you to do tricks like keeping the ObjectContext around for attaching new objects to it, and creating transactions. http://stackoverflow.com/questions/1375512/informing-parent-when-child-changes-a-property-value/1375610#1375610 Comment by Mike Brown on informing parent when child changes a property value Mike Brown 2009-09-04T12:45:50Z 2009-09-04T12:45:50Z Dependency Property Inheritance causes the value set on a parent to be applied to all of it's children (this is why setting the background on a window will make the background chang on all the children). By using the routed event, the parent will be notified that someone wants to change the current month. When the parent does so, all the children get updated. http://stackoverflow.com/questions/1375893/what-are-the-key-qualities-of-an-software-engineer/1375925#1375925 Comment by Mike Brown on What are the key qualities of an Software Engineer ? Mike Brown 2009-09-03T21:05:51Z 2009-09-03T21:05:51Z It's also a good idea when criticizing someone's &quot;grammer&quot; that your spelling isn't atrocious. http://stackoverflow.com/questions/1375893/what-are-the-key-qualities-of-an-software-engineer/1375904#1375904 Comment by Mike Brown on What are the key qualities of an Software Engineer ? Mike Brown 2009-09-03T21:04:32Z 2009-09-03T21:04:32Z So you argue that ENFP is better aligned with Software Engineering ;) http://stackoverflow.com/questions/1375776/how-to-use-listview Comment by Mike Brown on How to use listView ? Mike Brown 2009-09-03T20:35:23Z 2009-09-03T20:35:23Z which language/framework? Practically every UI framework has a ListView. http://stackoverflow.com/questions/160328/what-works-of-entertaining-fiction-best-depict-programmers/160414#160414 Comment by Mike Brown on What works of entertaining fiction best depict programmers? Mike Brown 2009-08-26T22:19:12Z 2009-08-26T22:19:12Z Don't forget Disclosure. The mainframe that had avatars of the users walking around in it with a picture of their face. http://stackoverflow.com/questions/1076083/run-asp-net-function-when-the-page-is-closing/1076101#1076101 Comment by Mike Brown on run asp.net function when The page is closing Mike Brown 2009-07-02T19:12:24Z 2009-07-02T19:12:24Z In that case you could have the Ajax poll the server periodically. http://stackoverflow.com/questions/1075992/how-can-i-organize-this-data-into-the-objects-i-want-with-linq/1076084#1076084 Comment by Mike Brown on How can I organize this data into the objects I want with LINQ? Mike Brown 2009-07-02T19:02:24Z 2009-07-02T19:02:24Z That's about it...I was going to suggest using some GroupBy Wizadry, but it looks like you've got it covered!