User Mike Post - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T18:39:10Z http://stackoverflow.com/feeds/user/20788 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1618596/why-are-signed-assemblies-slow-to-load 0 Why are signed assemblies slow to load? Mike Post 2009-10-24T17:42:53Z 2009-10-24T18:22:54Z <p>I encountered a strange problem this week that I can't explain: I switched my application to use the signed version of some third party assemblies (Xceed Grid and some of their other components) and the application start time went into the toilet. Each time the application loaded a signed assembly, it took 30 seconds to load. Application start went from 5 seconds to over 90 seconds. What the heck is going on here?!</p> <p>Some other info:</p> <ul> <li>This is a WinForms app running under .NET 3.5 SP1.</li> <li>The computer had no internet connection (on purpose, for security).</li> </ul> http://stackoverflow.com/questions/297889/how-to-prevent-toolstrip-from-docking-in-another-toolstripcontainer 1 How to prevent ToolStrip from docking in another ToolStripContainer? Mike Post 2008-11-18T04:56:32Z 2009-10-20T10:50:59Z <p>I have an MDI application that allows me to open different types of child windows. I can open multiple (but different) instances of the same type of child window. (Example: I can open 3 instances of child window type A and 2 instances of child window type B. All 5 windows are distinct entities and do not share data until unless the user explicitly drags the same data onto multiple windows.) Each child window has a ToolStripContainer with one or more ToolStrips. How do I prevent:</p> <ol> <li>the user from dragging a ToolStrip from a child window of type A to a ToolStripContainer in a child window of type B?</li> <li>the user from dragging a ToolStrip from one instance of child window A to a ToolStripContainer in another instances of the same type of window?</li> </ol> <p>I'm trying to prevent the user from dragging a ToolStrip from instance 1 of type A to instance 2 of type A, selecting some stuff on instance 2, and then clicking a button on the toolbar only to have something weird happen to some other window. Similarly it doesn't make sense to drag a ToolStrip from a window of type A to a window of type B -- the actions don't apply to that type, but to the user it looks like everything is fine because I let them do the drag.</p> <p>Is it as simple as adding my own handler for the ControlAdded event or is there a better way to do this? I'm using WinForms in .NET 3.0.</p> <p>edit: Steps to reproduce</p> <ol> <li>Create a new Windows Application project.</li> <li>Add a new user control. Give the control a ToolStripContainer that contains one ToolStrip with a single button.</li> <li>Repeat step 2, giving you a UserControl2 class.</li> <li>Compile the solution so UserControl1 and UserControl2 show up in your toolbox.</li> <li>Drag UserControl1 and UserControl2 onto the form. Set the borders so you know where the boundaries are.</li> <li>Run the app.</li> <li>It's now possible to drag the ToolStrip from the container in UserControl1 and drop it into the container in UserControl2 (leaving zero ToolStrips in UC1 and two ToolStrips in UC2.)</li> <li>Now imagine you only have access to the code in UserControl1. How do you prevent the user from dragging the ToolStrip out of that instance of the ToolStripContainer?</li> </ol> http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/124424#124424 26 Answer by Mike Post for Hidden .NET Base Class Library Classes? Mike Post 2008-09-23T22:53:15Z 2009-09-29T07:26:45Z <p>TextRenderer.MeasureText() is great for figuring out how large to draw your text. So often I see:</p> <pre><code>// this == something derived from Control Graphics g = this.CreateGraphics(); Size size = g.MeasureString(this.Text, this.Font).ToSize(); g.Dispose(); </code></pre> <p>When really all you need is:</p> <pre><code>Size size = TextRenderer.MeasureText(this.Text, this.Font); </code></pre> <p>The former is how you did it in 1.0 and 1.1; the latter is how you do it in 2.0+. It's much cleaner, doesn't requiring creating an object which must be disposed, and doesn't leave you open to accidentally not disposing of a resource. Plus if you use TextRenderer.DrawText() your text <a href="http://blogs.msdn.com/jfoscoding/archive/2005/10/13/480632.aspx" rel="nofollow">will look better and localize better</a>. This stuff just plain rocks when you're doing custom controls.</p> <p><strong>Edit:</strong> On the I18N/G11N front, here's more info: the shaping engines for international text have been updated quite a bit in the <a href="http://en.wikipedia.org/wiki/Uniscribe" rel="nofollow">Uniscribe subsystem</a> of the Windows operating system, but not in GDI+ subsystem. So sometimes things looked strange/wrong if your .NET app was using the Graphics based method (AKA, GDI+). However, using the TextRenderer approach (AKA, Uniscribe) eliminates these problems and allows you to render text correctly (perfectly?) in <a href="http://blogs.msdn.com/michkap/archive/2005/01/26/360685.aspx" rel="nofollow">the new locales introduced with Windows XP SP2</a> (such as Bengali and Croatian). (Caveat emptor: I have no idea how or even if either of these methods play with vendor specific extensions to specific code pages.)</p> http://stackoverflow.com/questions/589900/what-options-are-available-for-the-layout-of-directed-or-undirected-graphs-in-ne/876381#876381 0 Answer by Mike Post for What options are available for the layout of directed or undirected graphs in .NET? Mike Post 2009-05-18T05:32:31Z 2009-05-18T05:32:31Z <p><a href="http://www.northwoods.com" rel="nofollow">Northwoods</a> offers a pure .NET solution in their <a href="http://northwoods.com/go/dotnet-features-layout.htm" rel="nofollow">GoLayout</a> product. They offer tree, force directed, and layered digraph (which is not quite a Sujiyama effect, but not too far off for many if not most data sets). At $1790/seat it's expensive. There are also some limitations: most importantly, their implementations are designed for "human readable" graphs. I've given it data sets of over 5,000 nodes and had no issue, but I can also generate data sets of less than 500 nodes that cause it to have a stack overflow (recursing too deep). Depending upon your domain, it may (or may not) be a good fit. If you need a general layout package that handles any data set, I'd suggest GraphViz over Northwoods.</p> <p>I have yet to use any of their WPF capabilities, but I know they have them. I've been using their stuff in WinForms land for a while.</p> http://stackoverflow.com/questions/845623/whats-the-best-way-to-encrypt-short-strings-in-net/846252#846252 0 Answer by Mike Post for What's the best way to encrypt short strings in .NET? Mike Post 2009-05-10T22:38:56Z 2009-05-10T22:38:56Z <p>Why not just use a <a href="http://msdn.microsoft.com/en-us/library/system.security.securestring.aspx" rel="nofollow">SecureString</a>?</p> http://stackoverflow.com/questions/189121/mvp-dependency-injection/845750#845750 2 Answer by Mike Post for MVP dependency injection Mike Post 2009-05-10T17:55:10Z 2009-05-10T17:55:10Z <p>In WinForms, I prefer a simple approach. Usually you're dealing with a few UserControls on a design surface -- make these your view classes. .NET creates the control hierarchy for you (via InitializeComponent). If you use the <a href="http://martinfowler.com/eaaDev/PassiveScreen.html" rel="nofollow">Passive View</a> pattern, each view then instantiates it's presenter. (You can do this either directly or by asking an IOC container.) Use constructor injection to pass a reference to the view's interface to the presenter's constructor. The presenter can then wire itself up to view events. Repeat the process for the model: the presenter instantiates a model and wires up to its events. (In this case you don't need the constructor injection since Passive View says the presenter keeps a reference to the model, not vice versa.)</p> <p>The only nit I've found with this approach is properly managing lifetimes of the model and presenter. You want to keep the view as simple as possible, so you probably don't want it maintaining a reference to the presenter. However, that means you've got this presenter object hanging around with event handlers tied to your view. This setup prevents your view from being garbage collected. One solution is to have your view publish an event that indicates it's closing. The presenter would receive the event and remove both its model and view subscriptions. The objects in your web are now properly dereferenced and the garbage collector can go about its work.</p> <p>You wind up with something like the following:</p> <pre><code>public interface IView { ... event Action SomeEvent; event EventHandler Disposed; ... } // Note that the IView.Disposed event is implemented by the // UserControl.Disposed event. public class View : UserControl, IView { public event Action SomeEvent; public View() { var presenter = new Presenter(this); } } public interface IModel { ... event Action ModelChanged; ... } public class Model : IModel { ... public event Action ModelChanged; ... } public class Presenter { private IView MyView; private IModel MyModel; public Presenter(View view) { MyView = view; MyView.SomeEvent += RespondToSomeEvent; MyView.Disposed += ViewDisposed; MyModel = new Model(); MyModel.ModelChanged += RespondToModelChanged; } // You could take this a step further by implementing IDisposable on the // presenter and having View.Dispose() trigger Presenter.Dispose(). private void ViewDisposed(object sender, EventArgs e) { MyView.SomeEvent -= RespondToSomeEvent; MyView.Disposed -= ViewDisposed; MyView = null; MyModel.Modelchanged -= RespondToModelChanged; MyModel = null; } } </code></pre> <p>You can decouple this example a step further by using IOC and asking your IOC container for implementations of IModel (in the Presenter class) and IPresenter (in the View class).</p> http://stackoverflow.com/questions/838964/c-plugin-to-use-its-own-app-config/839011#839011 2 Answer by Mike Post for C# Plugin to use its own app.config Mike Post 2009-05-08T09:30:36Z 2009-05-08T09:30:36Z <p>You're working against the architecture of app.config. You get one app.config file per executable (EXE, not DLL). The executable launches, creates its AppDomain, and then loads MyApp.exe.config. You can add app.config objects all you want in Visual Studio, but they are ignored for DLLs. I think what you want to do is manually copy the XML from the dll.config and paste it into the application level app.config. (I'm sure there's a way to automate this using TeamBuild or some such.) The overridden values will then be available to your Properties.Settings class.</p> http://stackoverflow.com/questions/784155/usercontrol-as-an-interface-but-visible-in-the-designer/838921#838921 0 Answer by Mike Post for UserControl as an interface, but visible in the Designer Mike Post 2009-05-08T09:03:13Z 2009-05-08T09:03:13Z <p>It almost seems like you want to implement a mediator pattern. Instead of having to deal with each of the bazillion UserControls directly, you'd interact with them through the mediator. Each mediator would define the slim interface you want to see from each control. This would reduce the overall complexity by making your design more explicit and concise. For example, you wouldn't need the 20 properties and 50 methods available on one of your controls. Instead you'd deal with the mediator for that control which defines the 2 properties and 5 methods you really care about. Everything would still show up in the designer, but other parts of your app would not be interacting with those controls -- they'd interact with the mediators.</p> <p>One of the big advantages to this approach is it greatly simplifies your maintenance. If you decide the MyCrappyUserControl needs to be rewritten because the implementation is bad, you just need to update the mediator class for that control. All the other classes that interact with the control do so through the mediator and would be unchanged.</p> <p>Ultimately it comes down to discipline: you and your team need to be disciplined enough to use the mediators/interfaces/whatever instead of the directly hitting the controls. Institute an over the shoulder code review by a leader programmer if your team is on the low end of the discipline scale.</p> http://stackoverflow.com/questions/837565/why-is-drawstring-exhibiting-unexpected-behavior-in-c-winforms/837695#837695 2 Answer by Mike Post for Why is DrawString exhibiting unexpected behavior in C# Winforms? Mike Post 2009-05-08T00:26:57Z 2009-05-08T00:26:57Z <p>I'm going to guess that it's because you're using Graphics.DrawString() instead of TextRenderer.DrawText(). The former paints text using GDI+ which is sort of crappy and outdated. The latter uses GDI which is more modern (in terms of text rendering). I believe this is difference noted by the previous answer (WinForms vs. Windows).</p> <p>You might also try the overload of Graphics.DrawString() that takes a StringFormat object and specify StringFromat.GenericTypographic. However, this is really a bit of a hack around the problem. If you're using .NET 2.0 or later, you should be using the TextRenderer class instead of the crappy Graphics class for all of your text rendering needs. Graphics.MeasureString() and Graphics.DrawString() exist strictly for backwards compatibility with .NET 1.0 and 1.1.</p> <p>edit: Oh yeah, and your code leaks a GDI object on every paint cycle. Brush objects are managed wrappers around unmanaged resources thus they must be explicitly disposed.</p> http://stackoverflow.com/questions/257926/how-to-blend-cmmi-and-scrum 8 How to blend CMMI and Scrum? Mike Post 2008-11-03T04:14:23Z 2009-04-30T20:11:41Z <p>I work in a shop that is certified at CMMI level 5. This certification is important because it gives us access to certain customers and contracts. I'm looking at how to blend Scrum with CMMI. I've found some info on mixing Scrum with CMMI-3, but quite a bit of it is "hand wavy" and wouldn't hold up to intense scrutiny. Specifically, the organizational KPAs seem challenging.</p> <p>What experiences have you had (good and bad) mixing the two processes?</p> http://stackoverflow.com/questions/297838/what-are-effective-ways-to-log-and-track-programming-mistakes/297920#297920 2 Answer by Mike Post for What are effective ways to log and track programming mistakes? Mike Post 2008-11-18T05:26:02Z 2008-11-18T05:39:24Z <p>Yes, tracking your personal mistakes is beneficial. Refer to the <a href="http://www.sei.cmu.edu/" rel="nofollow">SEI</a> for numerous data points (<a href="http://www.sei.cmu.edu/cmmi/results/org6.html" rel="nofollow">here's</a> one at random). One such methodology is the <a href="http://www.sei.cmu.edu/tsp/" rel="nofollow">Personal Software Process (PSP)</a>. It's too long to go into here, but <a href="http://www.sei.cmu.edu/publications/books/process/psp-self-improvement.html" rel="nofollow">here's a book about it</a>. There's also <a href="http://www.sei.cmu.edu/pub/documents/05.reports/pdf/05sr003.pdf" rel="nofollow">this free SEI publication</a> on PSP.</p> <p>If you balk at SEI and think Agile is the way to go, you'll probably get better mileage out of a book like <a href="http://www.informit.com/store/product.aspx?isbn=0132350882" rel="nofollow">Clean Code: A Handbook of Agile Software Craftsmanship (publisher website)</a>.</p> <p>Bottom line: disciplined developer = good, undisciplined developer = bad.</p> http://stackoverflow.com/questions/58213/can-you-recommend-low-cost-automated-testing-tools-for-a-net-winforms-applicatio/276661#276661 0 Answer by Mike Post for Can you recommend low cost automated testing tools for a .NET Winforms application? Mike Post 2008-11-09T23:24:22Z 2008-11-09T23:24:22Z <p>Use the <a href="http://msdn.microsoft.com/en-us/library/ms753107.aspx" rel="nofollow">Microsoft UI Automation</a> portion of the .NET framework (System.Windows.Automation). It will automatically deal with things like the name of the class changing, the location/size of a button changing, etc. (In other words, all the things that traditional tools like SilkTest break on.) Plus you'll also be building in accessibility support (important if you want to sell to the U.S. government which requires being compatible with screen reader technologies, etc).</p> http://stackoverflow.com/questions/157055/net-3-5-published-in-11-07-net-3-0-in-11-06-why-are-most-people-still-using-n/267659#267659 0 Answer by Mike Post for .NET 3.5 published in 11/07 .NET 3.0 in 11/06. Why are most people still using .NET 2.0? Mike Post 2008-11-06T04:42:13Z 2008-11-06T04:42:13Z <p>For government processing, the 3.5 framework is not yet approved for some environments so you're forced to use 2.0 or 3.0.</p> http://stackoverflow.com/questions/225040/code-coverage-on-visual-studio-team-system-2008-developer-edition-on-an-nunit-ap/267253#267253 1 Answer by Mike Post for Code Coverage on Visual Studio Team System 2008 Developer Edition (on an NUnit application) Mike Post 2008-11-06T00:17:40Z 2008-11-06T00:17:40Z <p><a href="http://morten.lyhr.dk/2008/05/using-nunit-and-ncover-with-tfs-build.html" rel="nofollow">Here's a tutorial</a> on integrating NCover with MSBuild. <a href="http://blog.prokrams.com/2008/03/13/mbunit-ncover-and-teambuild-living-together-mass-hysteria/" rel="nofollow">Here's a tutorial</a> on how to tell Team Build to fail a build when NCover reports code coverage below a minimum threshold. To my knowledge there isn't yet a way to publish your NCover results directly to the TFS data warehouse, but I'd love someone to prove me wrong.</p> http://stackoverflow.com/questions/167198/what-are-your-experiences-with-scrumpad/257897#257897 0 Answer by Mike Post for What are your experiences with ScrumPad? Mike Post 2008-11-03T03:53:09Z 2008-11-03T03:53:09Z <p>Hosted solutions are great for some people, but not everyone. There's actually a corner of the software development world where work occurs on isolated networks. That means unless I can install the application on my own server, I have to jump between keyboards for the two disconnected networks in order to accomplish all of my work. The entire world is not connected to the internet (really).</p> http://stackoverflow.com/questions/235250/what-are-the-benefits-of-maintaining-a-clean-list-of-using-directives-in-c/235396#235396 5 Answer by Mike Post for What are the benefits of maintaining a "clean" list of using directives in C#? Mike Post 2008-10-24T22:01:51Z 2008-10-24T22:01:51Z <ol> <li>Less noise.</li> <li>Clear expectation of what types are used ("My UI layer depends upon System.Net. Wow, why?")</li> <li>Cleaner references: if you have the minimal set of using statements, you can cleanup your references. Often I see developers just keep throwing references into their projects, but they never remove them when they're no longer needed. If you don't have anything that actually needs a reference (and a using statement counts), it becomes trivial to clean up your references. (Why would you want to do that? In large systems that have been decomposed into components it will streamline your build dependencies by eliminating the unused deps.) </li> </ol> http://stackoverflow.com/questions/163131/prevent-legacy-function-calls-in-vb-net/163165#163165 2 Answer by Mike Post for Prevent Legacy Function Calls In VB.NET Mike Post 2008-10-02T15:59:14Z 2008-10-02T15:59:14Z <p>Hookup FxCop to your build and have it flag those usages. You can write your own rules to enforce your coding standards in an automated fashion.</p> http://stackoverflow.com/questions/131589/linux-c-programmer-to-c-windows-programmer/131591#131591 0 Answer by Mike Post for Linux/C++ programmer to C#/Windows programmer Mike Post 2008-09-25T05:24:11Z 2008-09-25T05:24:11Z <p>Get yourself a copy of <a href="http://www.jetbrains.com/resharper/index.html" rel="nofollow">Resharper</a>. It's probably the single best productivity tool out there for straight up coding.</p> http://stackoverflow.com/questions/131571/recommended-books-for-software-engineering/131578#131578 1 Answer by Mike Post for Recommended Books for Software Engineering Mike Post 2008-09-25T05:15:44Z 2008-09-25T05:15:44Z <p>Steve McConnell's Software Project Survival Guide is an oldie but goodie. It hits the main topics in a very approachable way.</p> http://stackoverflow.com/questions/128099/what-is-the-longest-human-name-you-can-expect/130381#130381 2 Answer by Mike Post for What is the longest human name you can expect? Mike Post 2008-09-24T22:41:33Z 2008-09-24T22:41:33Z <p>There's no easy answer to this question.</p> <p>The answer depends on what sort of data you expect to handle with your system. Do you expect only Americans to exist in your system? In that case Latin names could be considered your special case. But if you expect to deploy world wide you'll need to handle American names (3 parts), Latin names (4 parts), Arabic names (7 parts I think), Asian names (no idea on number of parts), etc. The ISO 8000 standard attempts to provide a framework to answer this sort of question, but does not answer it directly.</p> <p>Also don't forget to account for the multibyte character sets. For example, a name written in the Traditional Chinese character set may be 15 characters, but those 15 characters may take upwards of 45 bytes. 1 character != 8 bits</p> <p>If you're working with Western names written in Western alphabets, three fields of 256 characters each should cover most of your cases. Or you could follow the lead of the United States Postal Service for internal shipping labels: the combination of first, middle, and last names cannot exceed 32 characters including separating spaces) <a href="http://www.usps.com/webtools/_pdf/InternationalLabelsv12.pdf" rel="nofollow">PDF link</a></p> http://stackoverflow.com/questions/129028/how-to-deal-with-the-developers-refusing-to-use-certain-technologies-or-tools/129954#129954 2 Answer by Mike Post for How to deal with the developers refusing to use certain technologies or tools? Mike Post 2008-09-24T21:01:54Z 2008-09-24T21:01:54Z <p>It's very simple: the needs of the business are that you use a certain technology or tool. That need exists for a reason (your customer wants to tweak reports after they're delivered, your customer has certain licensing restrictions, your customer has certain security restrictions, etc). Developers exist to serve the needs of the business (AKA, make money for the business). If they don't want to serve the needs of the business then there is no longer a need for their services.</p> http://stackoverflow.com/questions/129508/when-did-you-know-it-was-time-to-leave-your-job/129851#129851 2 Answer by Mike Post for When did you know it was time to leave your job? Mike Post 2008-09-24T20:44:10Z 2008-09-24T20:44:10Z <p>I knew it was time to leave when I asked to write code in a proprietary scripting language my company had developed. There was no market for this skill so staying in that position would only limit my career. (You should always be trying to expand your career via either breadth or depth, whichever works best for you.)</p> http://stackoverflow.com/questions/124411/using-net-how-can-i-determine-if-a-type-is-a-numeric-valuetype/124505#124505 -1 Answer by Mike Post for Using .Net, how can I determine if a type is a Numeric ValueType? Mike Post 2008-09-23T23:12:32Z 2008-09-23T23:12:32Z <p>Use Type.IsValueType() and TryParse():</p> <pre><code>public bool IsInteger(Type t) { int i; return t.IsValueType &amp;&amp; int.TryParse(t.ToString(), out i); } </code></pre> http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/121879#121879 4 Answer by Mike Post for What is the one programming skill you have always wanted to master but haven't had time? Mike Post 2008-09-23T15:49:15Z 2008-09-23T15:49:15Z <p>ASP.NET: I do all sorts of application programming in .NET, but have just never ventured into the web world.</p> http://stackoverflow.com/questions/1776506/configure-visual-studio-errors-messages-should-be-referenced Comment by Mike Post on Configure Visual Studio Errors Messages (should be referenced) Mike Post 2009-11-27T21:27:45Z 2009-11-27T21:27:45Z Do you want to disable messages from Visual Studio or from Resharper? It's not clear based on your question. http://stackoverflow.com/questions/1618596/why-are-signed-assemblies-slow-to-load/1618609#1618609 Comment by Mike Post on Why are signed assemblies slow to load? Mike Post 2009-10-28T02:44:07Z 2009-10-28T02:44:07Z Thanks, that was exactly the problem! Heading over to post on the Xceed forums now so no one else has to suffer this same pain. http://stackoverflow.com/questions/297889/how-to-prevent-toolstrip-from-docking-in-another-toolstripcontainer/838981#838981 Comment by Mike Post on How to prevent ToolStrip from docking in another ToolStripContainer? Mike Post 2009-10-24T17:28:12Z 2009-10-24T17:28:12Z That only works if you have access to all of the code for the toolstrips. See step 8 of my repro steps in the submittal. (Actually I'm not sure that even works: it looks like you're attaching an event handler to the ToolStrip.EndDrag event. The built in handler will still run and perform the drop operation. Easy enough to fix if you own all the toolbar source code, but I don't.) http://stackoverflow.com/questions/589900/what-options-are-available-for-the-layout-of-directed-or-undirected-graphs-in-ne/589915#589915 Comment by Mike Post on What options are available for the layout of directed or undirected graphs in .NET? Mike Post 2009-06-01T22:20:05Z 2009-06-01T22:20:05Z I had some more time to look at MSAGL and was disappointed. It was crashing out of the box with 10K nodes and 50K edges with an out of memory exception. For the MDS layout it looks like they optimized for CPU usage at the expense of memory. http://stackoverflow.com/questions/589900/what-options-are-available-for-the-layout-of-directed-or-undirected-graphs-in-ne/590332#590332 Comment by Mike Post on What options are available for the layout of directed or undirected graphs in .NET? Mike Post 2009-05-18T05:20:48Z 2009-05-18T05:20:48Z Actually their Star Diagrams product seems to have some sort of automatic layout. $149/seat and offers tree and force directed. I haven't used it and have no idea how it handles the general case, but this is more along the lines of what you're looking for than their Flow Diagrams product. http://stackoverflow.com/questions/845623/whats-the-best-way-to-encrypt-short-strings-in-net/846252#846252 Comment by Mike Post on What's the best way to encrypt short strings in .NET? Mike Post 2009-05-13T07:27:19Z 2009-05-13T07:27:19Z Now that I dig deeper, I see that you can't serialize SecureString objects. Bummer. http://stackoverflow.com/questions/784155/usercontrol-as-an-interface-but-visible-in-the-designer/838921#838921 Comment by Mike Post on UserControl as an interface, but visible in the Designer Mike Post 2009-05-11T08:13:57Z 2009-05-11T08:13:57Z Not every programming problem has a technical solution. Sometimes the right answer is a people solution. http://stackoverflow.com/questions/784155/usercontrol-as-an-interface-but-visible-in-the-designer/845605#845605 Comment by Mike Post on UserControl as an interface, but visible in the Designer Mike Post 2009-05-11T08:02:48Z 2009-05-11T08:02:48Z This doesn't let you see MyUserControl in the designer though. http://stackoverflow.com/questions/784155/usercontrol-as-an-interface-but-visible-in-the-designer/838921#838921 Comment by Mike Post on UserControl as an interface, but visible in the Designer Mike Post 2009-05-10T08:44:30Z 2009-05-10T08:44:30Z This would just become part of your standard design for the code your shop produces. If you're turning programmers loose into your code without first briefing them on your design, this problem of UserControls exposing too many properties is going to be the least of your concerns. http://stackoverflow.com/questions/837565/why-is-drawstring-exhibiting-unexpected-behavior-in-c-winforms/837695#837695 Comment by Mike Post on Why is DrawString exhibiting unexpected behavior in C# Winforms? Mike Post 2009-05-08T08:15:59Z 2009-05-08T08:15:59Z More specifically: the GC will dispose of the managed wrapped, but not the underlying GDI object. Due to the design of GDI, those resources are not released until your process exits. That's why we have WPF -- to solve all these stupid little problems. http://stackoverflow.com/questions/837565/why-is-drawstring-exhibiting-unexpected-behavior-in-c-winforms/837695#837695 Comment by Mike Post on Why is DrawString exhibiting unexpected behavior in C# Winforms? Mike Post 2009-05-08T08:11:18Z 2009-05-08T08:11:18Z Nope. Brush and Pen objects in .NET are just managed wrappers around unmanaged resources (the GDI brush or pen). When the garbage collector runs it gets rid of the .NET wrapper, but not the underlying GDI object. General rule of thumb for GDI objects is to either wrap them in a using block or explicitly dispose of them in your finalizer. You should be able to verify this by using Task Manager (turn on the GDI Objects column) and watch the count increase as you leak the resources. The count won't go down even if you kick the GC into action. http://stackoverflow.com/questions/257926/how-to-blend-cmmi-and-scrum/808800#808800 Comment by Mike Post on How to blend CMMI and Scrum? Mike Post 2009-05-08T00:37:37Z 2009-05-08T00:37:37Z This is a nice write up on how to initially blend Scrum and CMMI, but it doesn't really get into the more interesting KPAs such as gathering metrics and then using them to manage your entire development life cycle. That's what levels 4 and 5 are all about (well okay, gathering metrics starts at level 2). http://stackoverflow.com/questions/351557/how-does-one-insert-a-column-into-a-dataset-between-two-existing-columns/351631#351631 Comment by Mike Post on How does one insert a column into a dataset between two existing columns? Mike Post 2009-01-19T05:09:38Z 2009-01-19T05:09:38Z Thanks, exactly what I needed! http://stackoverflow.com/questions/297889/how-to-prevent-toolstrip-from-docking-in-another-toolstripcontainer/377487#377487 Comment by Mike Post on How to prevent ToolStrip from docking in another ToolStripContainer? Mike Post 2009-01-06T22:24:32Z 2009-01-06T22:24:32Z That only works if you own and have access to all of the ToolStripContainers. See the A/B example above. http://stackoverflow.com/questions/257926/how-to-blend-cmmi-and-scrum/258492#258492 Comment by Mike Post on How to blend CMMI and Scrum? Mike Post 2008-11-06T04:30:51Z 2008-11-06T04:30:51Z I initially chalked this up to the hand wavy pool, but closer investigation showed the first half of the paper really does address the level 4 and 5 KPAs. Thanks!