User Doug L. - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T07:54:49Zhttp://stackoverflow.com/feeds/user/19179http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1712975/sublist-in-c-sharp/1713008#17130080Answer by Doug L. for Sublist in C sharpDoug L.2009-11-11T04:28:28Z2009-11-11T04:28:28Z<p>Your collection class could have a method that returns a collection (a sublist) based on criteria passed in to define the filter. Build a new collection with the foreach loop and pass it out. </p>
<p>Or, have the method and loop modify the existing collection by setting a "filtered" or "active" flag (property). This one could work but could also cause poblems in multithreaded code. If other objects deped on the contents of the collection this is either good or bad depending of how you use the data. </p>
http://stackoverflow.com/questions/1695841/how-to-make-words-into-a-category-nlp/1695866#16958661Answer by Doug L. for How to make words into a category. (NLP)Doug L.2009-11-08T09:33:49Z2009-11-08T09:33:49Z<p><a href="http://labs.google.com/sets" rel="nofollow">Google Sets</a> does some of this, and there is some <a href="http://www.googlelabs.com/show%5Fdetails?app%5Fkey=agtnbGFiczIwLXd3d3ITCxIMTGFic0FwcE1vZGVsGIYxDA" rel="nofollow">discussion</a> that mentions supersets. However, I have not really seen any technical details in there, just ideas and discussion.</p>
<p>Maybe this could at least help your research...</p>
http://stackoverflow.com/questions/1685480/dashboard-with-re-arrangeable-dashboard-elements-in-silverlight/1685670#16856700Answer by Doug L. for Dashboard with re-arrangeable dashboard elements in Silverlight?Doug L.2009-11-06T05:49:47Z2009-11-06T05:49:47Z<p>Infragistics <a href="http://www.infragistics.com/dotnet/netadvantage/silverlight/xamwebtileview.aspx#Overview" rel="nofollow">xamWebTileView</a> for Silverlight might be what you are looking for.</p>
http://stackoverflow.com/questions/1669721/is-there-a-good-alternative-to-xml-documentation-comments-for-c/1684450#16844500Answer by Doug L. for Is there a good alternative to xml documentation comments for C#?Doug L.2009-11-05T23:43:03Z2009-11-05T23:43:03Z<p><a href="http://code.google.com/p/cr-documentor/" rel="nofollow">cr_documentor</a> is another option. You use tha standard xml documentation (so intellisnese and other doc utilities stay happy). The human readable documentation is rendered in a window (docked or floating). </p>
<p>It may not be exactly what you want, but you might take a look at it.</p>
http://stackoverflow.com/questions/1670332/is-there-a-design-pattern-for-dealing-with-large-datasets-over-the-internet/1684403#16844031Answer by Doug L. for Is there a design pattern for dealing with large datasets over the internet?Doug L.2009-11-05T23:32:41Z2009-11-05T23:32:41Z<p>I wonder if you could reduce the amount of data going to the client screen in the first place? You can't see 5,000 points of data all at once anyway. And if you need to scroll to look for the important stuff, consider filtering out the non-important stuff to begin with. Consider some UI designs (dashboard and gauge type stuff) so that the user only sees the trouble spots. Then they can drill in and take action as required.</p>
<p>I know you can't reveal details and I've made a ton of assumptions and this is not a direct technical answer to your question - but maybe rethinking the necessary data feed would help push you in a more efficient direction for both the back-end and the front-end.</p>
http://stackoverflow.com/questions/1614087/system-net-mail-alternative/1614124#16141240Answer by Doug L. for System.Net.Mail AlternativeDoug L.2009-10-23T15:12:06Z2009-10-23T15:12:06Z<p>I have used SQL Server to send e-mail in situations where the client desktop was not able to send mail (usually for security reasons) but the server could.</p>
http://stackoverflow.com/questions/1403272/how-to-find-out-whether-somebody-has-subscribed-to-an-event/1403477#14034773Answer by Doug L. for How to find out whether somebody has subscribed to an event ?Doug L.2009-09-10T05:12:09Z2009-09-10T05:12:09Z<p>From <a href="http://msdn.microsoft.com/en-us/library/w369ty8x%28VS.80%29.aspx" rel="nofollow">Microsoft</a>:</p>
<pre><code> // Wrap event invocations inside a protected virtual method
// to allow derived classes to override the event invocation behavior
protected virtual void OnRaiseCustomEvent(CustomEventArgs e)
{
// Make a temporary copy of the event to avoid possibility of
// a race condition if the last subscriber unsubscribes
// immediately after the null check and before the event is raised.
EventHandler<CustomEventArgs> handler = RaiseCustomEvent;
// Event will be null if there are no subscribers
if (handler != null)
{
// Format the string to send inside the CustomEventArgs parameter
e.Message += String.Format(" at {0}", DateTime.Now.ToString());
// Use the () operator to raise the event.
handler(this, e);
}
}
</code></pre>
<p>You're looking for the <strong>if (handler != null)</strong> part. It's <em>null</em> if there are not any subscribers, <em>not null</em> if there are subscribers.</p>
http://stackoverflow.com/questions/1385276/books-for-gui-framework-creation/1385957#13859571Answer by Doug L. for Books for GUI framework creationDoug L.2009-09-06T15:41:46Z2009-09-06T15:41:46Z<p>The resources (documents and blogs) found through the <a href="http://www.codeplex.com/CompositeWPF" rel="nofollow">Composite Client Application Guidance</a> (formerly PRISM) would be a good place to start.</p>
http://stackoverflow.com/questions/1371857/how-to-debug-invoke-in-visual-studio-2008/1373297#13732970Answer by Doug L. for How to debug *Invoke() in Visual Studio 2008Doug L.2009-09-03T13:04:35Z2009-09-03T13:04:35Z<p>Something else you can do, as you venture into this area of development, is to enable the <em>debug threading window</em>. Whaen you hit breakpoints and step through the code, make note of the threads (you can even name them for clarification) to help you better understand what is happening when your code executes (and invokes).. </p>
<p>This is especially helpful when you are using background threads, timers, events, etc., and need to invoke back to the UI thread.</p>
http://stackoverflow.com/questions/1285713/outlook-mailitem-how-to-distinguish-whether-mail-is-incoming-or-outgoing/1285742#12857420Answer by Doug L. for Outlook MailItem: How to distinguish whether mail is incoming or outgoing?Doug L.2009-08-17T00:34:32Z2009-08-17T00:34:32Z<p>Take a look at the MailItem's .Parent property - examine the folder properties to determine if it is the inbox, outbox, drafts, sent items, etc.</p>
http://stackoverflow.com/questions/991896/switch-statement/991915#9919151Answer by Doug L. for switch statementDoug L.2009-06-14T01:20:33Z2009-06-22T19:00:47Z<p>Since you are learning, you might also consider handling the error differently.<br />
Have a look at the SO question: <a href="http://stackoverflow.com/questions/496519/in-c-should-try-catch-be-used-for-is-numeric-testing">In C# should try-catch be used for is-numeric testing?</a> for more ideas and discussion.</p>
http://stackoverflow.com/questions/1016707/why-do-people-consistently-recommend-using-appconfig-instead-of-using-settings-fi/1016803#1016803-2Answer by Doug L. for Why do people consistently recommend using appConfig instead of using Settings files? (.NET)Doug L.2009-06-19T07:47:57Z2009-06-19T07:47:57Z<p>Without the discussion, then the answer is:</p>
<p>"Because it's easier."</p>
http://stackoverflow.com/questions/1013729/what-image-format-should-i-use-for-barcodes-created-on-the-fly/1013838#10138380Answer by Doug L. for What Image format should I use for barcodes created on the fly.Doug L.2009-06-18T16:47:10Z2009-06-18T16:47:10Z<p>I have used .gif and .png successfully. My <a href="http://stackoverflow.com/questions/240948/web-pages-and-barcode-fonts/241468#241468">answer</a> (and other answers, to be fair) to <a href="http://stackoverflow.com/questions/240948/web-pages-and-barcode-fonts">this question</a> has more detail.</p>
http://stackoverflow.com/questions/1006569/how-to-display-an-image-next-to-the-cursor-when-dragging/1006608#10066080Answer by Doug L. for How to Display an image next to the cursor when dragging?Doug L.2009-06-17T12:09:17Z2009-06-17T12:09:17Z<p>The short answer starts with: </p>
<pre><code>Cursor myCursor = new Cursor("myCursor.cur");
</code></pre>
<p>The details are explained in this article: <a href="http://www.switchonthecode.com/tutorials/csharp-tutorial-how-to-use-custom-cursors" rel="nofollow">How To Use Custom Cursors</a></p>
http://stackoverflow.com/questions/806015/sql-query-joins-multiple-tables-too-slow-8-tables/1002731#10027310Answer by Doug L. for sql query joins multiple tables - too slow (8 tables)Doug L.2009-06-16T16:57:40Z2009-06-16T16:57:40Z<p>Depending on your version of SQL server, simply putting your query into a stored procedure may make a big difference. Try this after you have tried the other optimizations first.(Yes, I know there are cached execution plans and other internal server optimizations, but in my practical real-world experience, stored procedures can execute faster.)</p>
http://stackoverflow.com/questions/998240/how-to-keep-a-track-of-last-modified-time/998354#9983540Answer by Doug L. for how to keep a track of last modified timeDoug L.2009-06-15T20:58:19Z2009-06-15T20:58:19Z<p>If you are using <strong>MS SQL Server</strong>, you'll want to use a <strong>DATETIME</strong> column. TIMESTAMP may look good at first, but you can't query it or use it in an index. It's more for tracking the order in which things happened in the databse or comparing your original record against the database for changes when updating (which you should be doing if you are not already in a multi-user environment). Details: <a href="http://www.sqlteam.com/article/timestamps-vs-datetime-data-types" rel="nofollow">Timestamps vs Datetime data types</a></p>
<p>I have even worked on systems that have a log table to track changes because there are often more than one modification to the record. In addition, some have another table that tracks the indiviual changes made in a key/value type listing driven by an update trigger. This data ties back to the log and ultimately to the record. You can then easily build up a history of all changes made to the record.</p>
http://stackoverflow.com/questions/991715/alternatives-to-the-treeview/991952#9919522Answer by Doug L. for Alternatives To The TreeviewDoug L.2009-06-14T01:49:31Z2009-06-14T01:49:31Z<p>Take a look at <a href="http://quince.infragistics.com" rel="nofollow">Quince</a> for some UI (they call it UX) inspiration. Search for hierarchical.</p>
<p>Examples include patterns such as Cascading Lists and TreeMap.</p>
<p>From those, you can click the "related" button to see even more ideas.</p>
http://stackoverflow.com/questions/988693/how-can-i-update-a-textbox-from-a-class-using-events/988928#9889281Answer by Doug L. for How can I update a TextBox from a class using events?Doug L.2009-06-12T20:40:58Z2009-06-12T20:51:40Z<p>It's probably time to consider:</p>
<ol>
<li>Databinding your textbox to your class</li>
<li>Model/View/Presenter (MVP)</li>
</ol>
<p>For #1 (Databinding), you can use the INotifyPropertyChanged interface on your class and raise the event for changed properties.</p>
<pre><code>public class BusinessModel : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
private int _quantity;
public int Quantity
{
get { return _quantity; }
set
{
_quantity = value;
this.OnPropertyChanged("Quantity");
}
}
void OnPropertyChanged(string PropertyName)
{
if (this.PropertyChanged != null)
{
this.PropertyChanged(this, new PropertyChangedEventArgs(PropertyName));
}
}
}
</code></pre>
<p>And in your form, youcan bind the .Text property of the textBox to the object in several ways. Through the UI or in code.</p>
<p>Links:</p>
<ul>
<li><a href="http://www.codeproject.com/KB/cs/BindBetterINotifyProperty.aspx" rel="nofollow">Bind Better with INotifyPropertyChanged</a></li>
<li><a href="http://msdn.microsoft.com/en-us/library/ms229614.aspx" rel="nofollow">How to: Implement the INotifyPropertyChanged Interface</a></li>
</ul>
<p>Now, if you need to add to text that already exists such as in your example, you can either track the full text in the class or raise events from your class and respond in the form code. Tracking it in the class would be better - you really don't want any logic in the form at all, which brings us back to binding and/or some form of MVP/MVC.</p>
http://stackoverflow.com/questions/951543/developing-mobile-apps/985605#9856051Answer by Doug L. for Developing mobile appsDoug L.2009-06-12T08:33:18Z2009-06-12T08:33:18Z<p>This just in -</p>
<p>Today's <a href="http://www.codeproject.com/script/Mailouts/View.aspx?mlid=5118" rel="nofollow">Code Project Insider</a> included this <a href="http://infoworld.com/" rel="nofollow">InfoWorld</a> article -</p>
<ul>
<li>"<a href="http://infoworld.com/print/79077" rel="nofollow"><strong>How to choose a mobile
development platform</strong></a>"</li>
</ul>
http://stackoverflow.com/questions/958973/how-to-prevent-users-from-abusing-service/959223#9592231Answer by Doug L. for How to Prevent Users From Abusing ServiceDoug L.2009-06-06T08:03:33Z2009-06-06T08:03:33Z<p>In addition to monitoring the file count, you could black-list certain share names and path names (winnt, windows, temp, "program files", etc.) or specific files known to be in the windows directory could raise a flag. Obviously, you can't check for every case, but you can catch the most likely user errors.</p>
<p>In addition, it sounds like trouble if you have: #1) a service that touches file systems via paths manually specified by users (reminds me of a sql injection) and #2) users who know enough to try <code>\\localhost\c$</code>. You may need to consider better security and logging.</p>
http://stackoverflow.com/questions/957992/c-error-on-close/958097#9580970Answer by Doug L. for C# Error on CloseDoug L.2009-06-05T20:54:43Z2009-06-05T20:54:43Z<p>Do you have any code that raises custom events? Could these processes still be running when the app tries to close in real-time?</p>
<p>Do you have any custom Dispose code that could be running at time of close?</p>
http://stackoverflow.com/questions/957445/t-sql-indexing-service-sql-openquery-optimization/957617#9576171Answer by Doug L. for T-SQL Indexing Service SQL openquery optimizationDoug L.2009-06-05T19:14:18Z2009-06-05T19:14:18Z<p><em>null</em> values might be a problem. I'm not sure about this exact case, but sometimes including "<code>where xxx is not null</code>" can make a real difference.</p>
<p>Another option sometimes is to put where conditions on the table after the open query
<code>select aaa, bbb from openquery(.....) where aaa = zzz</code>. (For better style, select the columns you need instead of *.</p>
<p>As for which is more efficient or faster, you may have to wrap the query with a simple timing process and judge for yourself if you can't use the metrics provided by the SQL Management default messages.</p>
<p>In the end, as long as your query works and does not break any standards that you have set for your project, yes - use it. </p>
http://stackoverflow.com/questions/951543/developing-mobile-apps/951734#9517341Answer by Doug L. for Developing mobile appsDoug L.2009-06-04T16:45:28Z2009-06-04T16:51:46Z<p>You need to define the end-result requirements for the application.</p>
<p>Part of the answer depends on what mobile hardware you will be running. And, whether or not you need to use unique abilities of your hardware (touch-screen, barcode scanner, gps, special buttons, VOIP, etc.) or if a simple input/output screen framework is sufficient.</p>
<p>That might drive your decision towards a local application or something more remote like a web application or terminal services. (There are, of course, local applications that use remote services also. Do you need to consider multiple front-ends?)</p>
<p>In addition, where are your development strengths? What are your language proficiencies? As you mentioned, mobile application development can have a steep startup curve for learning and for setting up your initial development/debugging/deployment environment. Is that worth it, or can you leverage desktop or web development experience and deploy remotely?</p>
<p>Once you make these decisions and determine your development environment and target, then you can take the next step to look at frameworks and methodologies specific to your needs.</p>
http://stackoverflow.com/questions/951503/how-to-sugar-coat-that-you-dont-have-work-experience-with-a-particular-tool-or-l/951540#9515408Answer by Doug L. for How to sugar coat that you don't have work experience with a particular tool or language?Doug L.2009-06-04T16:12:45Z2009-06-04T16:12:45Z<p>Don't sugar coat it at all. That will be trouble later when they decide that you are not an honest person.</p>
<p>Be honest about it.</p>
<p>See if you have experience that is similar.</p>
<p>Your best course is to emphasize your ability to learn and adapt to new technology quickly. If possible, back that up with examples of your other knowledge, transcripts of coursework and other learning and how you applied it. </p>
http://stackoverflow.com/questions/873507/is-it-bad-practice-to-disable-os-based-features/873548#8735480Answer by Doug L. for Is it bad practice to disable OS-based 'Features'?Doug L.2009-05-16T23:37:32Z2009-05-16T23:37:32Z<p>I've seen apps (including the Windows OS, I think) that disable cut and paste when in a password text box.</p>
<p>I would agree that there are rare reasons, but that is is bad practice in general.</p>
http://stackoverflow.com/questions/686199/help-figuring-out-approaches-to-near-real-time-multi-dimensional-data-querying/686304#6863040Answer by Doug L. for Help figuring out approaches to (near) real time multi dimensional data queryingDoug L.2009-03-26T15:36:00Z2009-03-26T15:36:00Z<p>It would probably be better to build a dynamic query in your code with all the joins you need, customized to each individual request. (properly parameterized for security of course).</p>
<p>You would use much of the same cascading logic you have now but you move it to to the code instead of the database. Then you only submit the exact query you need.</p>
<p>The performance would beat using all of the temp tables and you might get some caching benefit after a few queries were run.</p>
http://stackoverflow.com/questions/686071/the-best-model-for-integration-of-plugins/686109#6861090Answer by Doug L. for The best model for integration of pluginsDoug L.2009-03-26T14:46:31Z2009-03-26T15:00:21Z<p>Consider Microsoft's Patterns and Practices <a href="http://www.codeplex.com/CompositeWPF" rel="nofollow">Composite Application Guidance for WPF and Silverlight</a>. Even if it is not exactly what you need, it would be a good pattern to learn some methods for accomplishing some of what you need for modularity such as sharing data between modules.</p>
http://stackoverflow.com/questions/686071/the-best-model-for-integration-of-plugins/686157#6861570Answer by Doug L. for The best model for integration of pluginsDoug L.2009-03-26T14:59:35Z2009-03-26T14:59:35Z<p>The <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=3BE112CC-B2C1-4215-9330-9C8CF9BCC6FA&displaylang=en" rel="nofollow">Smart Client Software Factory</a> is another bit of guidance to consider. It's WinForms for the most part and perhaps slightly more complex than the newer WPF release (which was completely re-architected). However, it would also give you ideas to accomplish your modular goals. The links and documentation do a good job of covering how modules are separate, but can pass data through the common framework.</p>
http://stackoverflow.com/questions/677878/good-examples-of-winform-uis-from-a-ux-and-aesthetic-standpoint/678056#6780561Answer by Doug L. for Good examples of Winform UIs - from a UX and aesthetic standpointDoug L.2009-03-24T15:54:37Z2009-03-24T15:54:37Z<p>For inspiration, take a look at the <a href="http://www.infragistics.com/hot/quince.aspx" rel="nofollow">Infragistics Quince UX</a> site. It may not necessarily all fit your WinForms criteria, but there is a wealth of information in there whether you have Infragistics or not.</p>
http://stackoverflow.com/questions/673640/white-papers-on-logging/673668#6736681Answer by Doug L. for White papers on logging.Doug L.2009-03-23T14:50:29Z2009-03-23T14:50:29Z<p>Very similar to <a href="http://stackoverflow.com/questions/673575/what-are-the-best-practices-for-logging-an-enterprise-application">http://stackoverflow.com/questions/673575/what-are-the-best-practices-for-logging-an-enterprise-application</a>.</p>
http://stackoverflow.com/questions/1780815/how-do-you-like-your-naming-conventions/1780830#1780830Comment by Doug L. on How do you like your naming conventions?Doug L.2009-11-23T05:34:07Z2009-11-23T05:34:07ZI'm guessing that the underscore is a pain-in-the-rear to type.http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/406804#406804Comment by Doug L. on What's your most controversial programming opinion?Doug L.2009-09-20T09:28:21Z2009-09-20T09:28:21ZAre you nuts? <wink> I'll vote you up just because I disagree so strongly (and that makes it controversial - to me anyway). I need those tools. It would be similar to punishing everyone by taxing junk food because some people can't control themselves.http://stackoverflow.com/questions/1285713/outlook-mailitem-how-to-distinguish-whether-mail-is-incoming-or-outgoingComment by Doug L. on Outlook MailItem: How to distinguish whether mail is incoming or outgoing?Doug L.2009-08-17T01:16:55Z2009-08-17T01:16:55ZDo you have to check all of the recipients, cc's, etc or can you just look at the sender? If the account owner didn't send it, then it's incoming.http://stackoverflow.com/questions/1285713/outlook-mailitem-how-to-distinguish-whether-mail-is-incoming-or-outgoing/1285742#1285742Comment by Doug L. on Outlook MailItem: How to distinguish whether mail is incoming or outgoing?Doug L.2009-08-17T01:16:04Z2009-08-17T01:16:04ZThat's a very good question. I don't have a god answer for that one.http://stackoverflow.com/questions/1020562/using-base-classes-and-method-overriding-to-write-neater-code/1020596#1020596Comment by Doug L. on Using base classes and method overriding to write neater codeDoug L.2009-06-20T08:05:42Z2009-06-20T08:05:42Z@JP - Thanks for the BlackWasp link!http://stackoverflow.com/questions/1016707/why-do-people-consistently-recommend-using-appconfig-instead-of-using-settings-fi/1016803#1016803Comment by Doug L. on Why do people consistently recommend using appConfig instead of using Settings files? (.NET)Doug L.2009-06-19T15:48:49Z2009-06-19T15:48:49Z@Jedi - but you even said below, "...because hand sculpting them the first couple times is painful." Sure, once it's all in place it's great. But in the beginning, app.config is easier and that's why people use it. I didn't say it was best, just easy. It's the path of least resistance and that's the answer to the question. Respectfully... :) http://stackoverflow.com/questions/996904/calling-sprocs-from-a-db-layer-in-c/996941#996941Comment by Doug L. on calling sprocs from a db layer in c#Doug L.2009-06-15T16:17:29Z2009-06-15T16:17:29Z+1 for 'using()' to eliminate memory leaks!http://stackoverflow.com/questions/985057/sqlcommand-c-issue/985371#985371Comment by Doug L. on SqlCommand C# IssueDoug L.2009-06-12T08:48:27Z2009-06-12T08:48:27ZThis is a good idea - remember, the error you see is sometimes the result of a deeper error that has bubbled up to the point where it gets reported. In this case, since the code usually works, you should look at external (database) influences.http://stackoverflow.com/questions/673654/when-is-it-okay-to-check-if-a-file-exists/673695#673695Comment by Doug L. on When is it okay to check if a file exists?Doug L.2009-03-23T15:16:04Z2009-03-23T15:16:04Z+1 - I'm going to delete my answer in favor of yours, which I think captures the the essence of the question :)http://stackoverflow.com/questions/673654/when-is-it-okay-to-check-if-a-file-exists/673688#673688Comment by Doug L. on When is it okay to check if a file exists?Doug L.2009-03-23T15:01:00Z2009-03-23T15:01:00ZYes, but the orig question was asking WHEN to check, not necessarily HOW to implement it. (But I agree with your point).http://stackoverflow.com/questions/672810/what-are-the-most-common-and-often-overlooked-causes-of-memory-leaks-in-managed/672850#672850Comment by Doug L. on What are the most common (and often overlooked) causes of memory leaks in managed (.net) applications?Doug L.2009-03-23T11:45:04Z2009-03-23T11:45:04Z+1 for the USING{} - this has helped me solve definite memory leaks in the past!http://stackoverflow.com/questions/635278/what-does-your-development-environment-look-like/635350#635350Comment by Doug L. on What does your development environment look like?Doug L.2009-03-23T03:43:44Z2009-03-23T03:43:44Z+1 because a) it's so well documented on the website and b) you said yourself it's over the top and it's fun. I agree! What's wrong with fun? Why do so many people bash a setup because they think there are too many monitors? (See most any SO multi-monitor question...)http://stackoverflow.com/questions/533965/why-is-security-through-obscurity-a-bad-idea/534006#534006Comment by Doug L. on Why is security through obscurity a bad idea?Doug L.2009-03-21T08:55:54Z2009-03-21T08:55:54Z@alex The scene at the end of "The Apple Dumpling Gang" comes to mind...http://stackoverflow.com/questions/654975/where-is-the-code-for-the-unity-container-in-the-composite-application-library/655028#655028Comment by Doug L. on Where is the code for the Unity Container in the Composite Application Library?Doug L.2009-03-17T17:39:30Z2009-03-17T17:39:30ZI added the download link for the Unity application block. I searched the source that comes with it and found the resolve method in there.http://stackoverflow.com/questions/626337/internationalization-should-i-use-resources-or-mvp-for-labels/626593#626593Comment by Doug L. on Internationalization: Should I use resources or MVP for labels?Doug L.2009-03-15T11:12:16Z2009-03-15T11:12:16ZAfter more research and tinkering, I'm convinced that before "reinventing the wheel", I should really try out what is already built into the framework. It isn't 100% what I'm looking for, but I'll spend less time (and deal with far fewer bugs) by keeping it simple! Thanks again for your input!